root/graph/JavaPopWeb/src/jp/ac/nime/computer/grpsimulator/GrpSimApp.java

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. GrpSimApp
  2. init

/* <applet code="GrpSimApp" width=650 height=750>
 * </applet>
 */
package jp.ac.nime.computer.grpsimulator;

import java.awt.*;
import javax.swing.*;

/** アプレット起動用JApplet継承クラス
 * @version 1.0.0
 * @author  igarashi
 */
public class GrpSimApp extends JApplet {
    public void init() {
                Container con = getContentPane();
        con.setLayout(new BorderLayout());
        con.add(new GrpSim(this), BorderLayout.CENTER);
    }
}

/* [<][>][^][v][top][bottom][index][help] */