import java.applet.Applet; import java.awt.*; public class SampleApplet2 extends Applet { private Biorhythm yourBiorhythm; private BiorhythmCanvas biorhythmCanvas; private ControlPanel controlPanel; public void init() { yourBiorhythm = new Biorhythm(); biorhythmCanvas = new BiorhythmCanvas(yourBiorhythm); controlPanel = new ControlPanel(new SetDaysFrame(), biorhythmCanvas, yourBiorhythm); setLayout(new BorderLayout()); add("Center", biorhythmCanvas); add("South", controlPanel); } }