Content deleted Content added
m fix bad code examples for swing especially by putting everything in a run() instead of a init constructor |
m fix JFrame initialization ___location |
||
Line 137:
public class SwingExample implements Runnable {
private JFrame f;
public SwingExample() {
// Create the window
// Sets the behavior for when the window is closed
f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
|