setTitle( "Flow" );
setSize( 100, 100 );
setLayout( new FlowLayout( FlowLayout.CENTER ) );
add( new Button( "1" ) );
add( new Button( "TWO" ) );
add( new Button( "3" ) );
add( new Button( "four" ) );
add( new Button( "*** FIVE ***" ) );
add( new Button( "-6-" ) );
setVisible( true );