/*
    This is a template file for simple event driven programs
    using scrollbars. See Chapter 6 of "Java for Students".

    Put the name of your program where ??? is now and
    then rename this file to match the name of your program.
*/
import java.awt.*;
import java.applet.Applet;
import java.awt.event.*;

public class ??? extends Applet implements AdjustmentListener
{
  private ; //put instance variables here

  public void init ()
  {
     //put initialization code here
  }

  public void paint (Graphics g)
  {
     //put paint method code here
  }

  public void adjustmentValueChanged(AdjustmentEvent e)
  {
      //put code for what to do when there's an event
      repaint();
  }
}

