diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 0000000..f13ae4e --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1 @@ +/app/ diff --git a/src/app/test.java b/src/app/test.java new file mode 100644 index 0000000..a0e3599 --- /dev/null +++ b/src/app/test.java @@ -0,0 +1,43 @@ +package app; + +import java.awt.EventQueue; + +import javax.swing.JFrame; + +public class test { + + private JFrame frame; + + /** + * Launch the application. + */ + public static void main(String[] args) { + EventQueue.invokeLater(new Runnable() { + public void run() { + try { + test window = new test(); + window.frame.setVisible(true); + } catch (Exception e) { + e.printStackTrace(); + } + } + }); + } + + /** + * Create the application. + */ + public test() { + 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); + } + +}