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