FileDocCategorySizeDatePackage
Border.javaAPI DocExample554Sun Mar 01 22:42:38 GMT 1998None

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();