// DrawGraph メインクラス // JDK 1.0.2 // 1998 N.Inoue import java.awt.*; import java.applet.*; public class DrawGraph extends Applet { GraphSheet graph; public void init() { this.setLayout(new BorderLayout()); this.add("Center", graph = new GraphSheet()); this.add("South", new ControlPanel(graph)); this.add("North", new PaletPanel(graph)); this.setBackground(Color.white); } public void start() { graph.clearGraph(); } }