Okay, I get it Zod is the bad guy. But is he an idiot? You take blue Kryptonite to make sure you don’t get sucked up to another world only to put it into your foe…and you get sucked up into that other world anyways? Wow! I kind of saw that coming, I won’t lie. Season 9 felt like a real slow burn for me. I like that about the older TV shows when we got more than twenty episodes a season! Talk about a wild ride. Season Nine did not disappoint. Now, onto Season Ten! The final and last season of Smallville.
There are two kinds of programs in Java. One that runs on the commandline. The other runs as a GUI. Today we'll be focusing on GUIs.
In order to work with a GUI, first you need to create a window. We use a JFrame in order to do this.
import javax.swing.JFrame;
public class Window extends JFrame {
public Window() {
super("My Window");
setSize(640, 480);
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null);
setVisible(true);
}
public static void main(String[] args) {
new Window();
}
}
Comments
Post a Comment