/* Param タグバグチェック Ver 0.00 */ /* */ /* */ /* by Atsushi 1999/5/8 */ import java.applet.Applet; import java.awt.*; public class ParameterCheck extends Applet { /* --- Field --- */ private boolean paramTag; /* --- 初期化 --- */ public void init() { paramTag=(getParameter("param")!=null); setBackground(Color.white); setLayout(new FlowLayout(FlowLayout.LEFT)); add(new Label("Param : "+paramTag)); } /* --- Applet の動作 --- */ public void start() { } public void stop() { } /* --- 描画処理 --- */ public void update(Graphics g) { paint(g); } /* --- 終了処理 --- */ public void destroy() { removeAll(); } }