]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/group/GroupAgent.java
Basic Group GUI implementation
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / group / GroupAgent.java
1 package at.ac.tuwien.sbc.valesriegler.group;
2
3 import javax.swing.SwingUtilities;
4
5 import at.ac.tuwien.sbc.valesriegler.group.gui.GroupFrame;
6
7 /**
8  * 
9  * 
10  * @author Gregor Riegler <gregor DOT riegler AT gmail DOT com>
11  *
12  */
13 public class GroupAgent {
14         
15         public static void main(String[] args) {
16                 // TODO initiate communication
17                 
18                 SwingUtilities.invokeLater(new GroupGUI());
19                 
20         }
21         
22         static class GroupGUI implements Runnable {
23                 @Override
24                 public void run() {
25                         GroupFrame frame = new GroupFrame();
26                         frame.pack();
27                         frame.setVisible(true);
28                 }
29         }
30
31 }