import java.applet.Applet;
import java.awt.*;
/**
* 日本語のメッセージやアイテムを表示するアプレット
* JSamples クラスの定義
*/
public class JSamples extends Applet {
/** アプレットの初期設定を行うメソッド */
public void init() {
try {
Button button = new Button(
JString.j2u("稚内北星学園短期大学") );
add( button );
Checkbox check = new Checkbox( JString.j2u("有効/無効") );
add( check );
}
catch( Exception e ) {
}
}
}