import java.applet.Applet;
import java.awt.*;

// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

public class WastedSpace extends Applet {
  public void init() {
    setLayout(new BorderLayout());
    Label label =
      new Label("Scrollbar is at its maximum value",
                Label.CENTER);
    add("North", label);
    Scrollbar bar =
      new Scrollbar(Scrollbar.HORIZONTAL, 4, 1, 1, 4);
    add("Center", bar);
  }
}

