Main_Class
1| /*
2| NTC Java Programming 152-116
3| Instructor: John Heckendorf
4| Student: Keith Gallistel
5| Lab ID: 46314
6| Project: Powerball.java
7| */
8|
9| //Main application class
10| import javax.swing.*;
11|
12| public class Main_Class
13| {
14| final static long serialVersionUID = 5;
15|
16| //Method which launches the application
17| public static void main(String arg[])
18| {
19| Control_Class oControl = new Control_Class();
20| oControl.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
21| }
22| }