/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- GrpSimApp
- 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);
}
}