JFrame frame = new JFrame( "HelloJava" ); frame.add( new HelloComponent() ); frame.setSize( 300, 300 ); frame.setVisible( true );