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.

/** The RowLayout layout manager in action.
 * @see RowLayout
 */

public class RowLayoutTest extends Applet {
  public void init() {
    setLayout(new RowLayout(5, 5));
    add(new Button("Test One"));
    add(new Button("Test Two"));
    add(new Button("Test Three"));
  }
}

