import javax.swing._;

object HelloWorld extends JFrame( "Greetings" ) 
{    
    def main( args: Array[String] ) = 
    {
        setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        add( new JLabel( "Hello World" ) );
        pack();
        setVisible( true );
    }
}
 
code/hello-swing.txt · Last modified: 2006/04/05 23:35 by 62.179.241.212
 
Recent changes RSS feed Valid XHTML 1.0 Driven by DokuWiki