FileDocCategorySizeDatePackage
Border.javaAPI DocExample578Thu Feb 03 08:18:06 GMT 2000None

Border

public class Border extends Frame

Fields Summary
Constructors Summary
public Border()

  setTitle( "Border" );

      setSize( 200, 300 );

      setBackground( Color.red );

      add( "North", new TextField( "", 0 ) );

      add( "South", new Label( "Bottom of screen" ) );

      add( "West", new Button( "West" ) );

      add( "East", new Button( "East-side" ) );

      setVisible( true );

   
Methods Summary
public static voidmain(java.lang.String[] args)

  new Border();