* initial push

* module Java Web Start (jws) add

* pom improvements and fixes
This commit is contained in:
Daniel Cassiani
2017-03-19 08:44:00 -03:00
committed by Zeger Hendrikse
parent 202a19acbf
commit d35f7d01f7
9 changed files with 155 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package com.example;
import javax.swing.*;
public class Hello {
public static void main(String[] args) {
JFrame f = new JFrame("main");
f.setSize(200, 100);
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JLabel label = new JLabel("Hello, world!");
f.add(label);
f.setVisible(true);
}
}