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.

/** FlowLayout puts components in rows. */

public class FlowTest extends Applet {
  public void init() {
    // Default: setLayout(new FlowLayout());
    for(int i=1; i<6; i++)
      add(new Button("Button " + i));
  }
} 

