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: 2010/02/28 16:13 by 82.233.81.47
 
Recent changes RSS feed Valid XHTML 1.0 Driven by DokuWiki