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.

/** An example of BorderLayout. */

public class BorderTest extends Applet {
  public void init() {
    setLayout(new BorderLayout());
    add("North",  new Button("Button 1"));
    add("South",  new Button("Button 2"));
    add("East",   new Button("Button 3"));
    add("West",   new Button("Button 4"));
    add("Center", new Button("Button 5"));
  }
} 

