/* The application class for the CompSci 101 graphical user interface The constructor for the MyJFrame object takes the following parameters: - a title - the x position of the top corner of the window - the y position of the top corner of the window - the width of the content pane of the window - the height of the content pane of the window */ public class MyApp { public static void main(String[] args) { MyJFrame gui = new MyJFrame("My Window", 50, 50, 200, 200); } }