|
@@ -0,0 +1,41 @@
|
|
|
+package eu.tankernn.julklapp;
|
|
|
+import java.awt.EventQueue;
|
|
|
+import javax.swing.JFrame;
|
|
|
+
|
|
|
+public class Julspel {
|
|
|
+
|
|
|
+ private JFrame frame;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Launch the application.
|
|
|
+ */
|
|
|
+ public static void main(String[] args) {
|
|
|
+ EventQueue.invokeLater(new Runnable() {
|
|
|
+ public void run() {
|
|
|
+ try {
|
|
|
+ Julspel window = new Julspel();
|
|
|
+ window.frame.setVisible(true);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Create the application.
|
|
|
+ */
|
|
|
+ public Julspel() {
|
|
|
+ initialize();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Initialize the contents of the frame.
|
|
|
+ */
|
|
|
+ private void initialize() {
|
|
|
+ frame = new JFrame();
|
|
|
+ frame.setBounds(100, 100, 450, 300);
|
|
|
+ frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|