diff options
Diffstat (limited to 'src/client/MainWindow.java')
| -rw-r--r-- | src/client/MainWindow.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/client/MainWindow.java b/src/client/MainWindow.java new file mode 100644 index 0000000..b6020d2 --- /dev/null +++ b/src/client/MainWindow.java @@ -0,0 +1,22 @@ +package org.manzerbredes.client; + +import java.awt.EventQueue; +import javax.swing.JFrame; + +public class MainWindow extends JFrame { + + + + public MainWindow(){ + this.initUI(); + this.setVisible(true); + } + + private void initUI(){ + this.setTitle("Open KLM"); + this.setSize(700, 500); + setLocationRelativeTo(null); + setDefaultCloseOperation(EXIT_ON_CLOSE); + } + +}
\ No newline at end of file |
