Swing (Java): Difference between revisions

Content deleted Content added
added link to 2nd part of "Creating Polished Apps"
m The program: Fixing the code list
Line 11:
 
''Code for HelloWorldSwing: ''
<pre>
 
import javax.swing.*;
public class HelloWorldSwing {
Line 36:
}
 
public static void main(String[] args) {
//Schedule a job for the event-dispatching thread:
//creating and showing this application's GUI.
Line 46:
}
}
</pre>
 
 
==History==