source: src/main/java/genius/Application.java@ 209

Last change on this file since 209 was 21, checked in by Wouter Pasman, 6 years ago

#2 removed old NegoGUIView and NegoGuiMain application.

File size: 378 bytes
Line 
1package genius;
2
3import java.io.IOException;
4
5import genius.domains.DomainInstaller;
6import genius.gui.MainPanel;
7
8public class Application {
9 public static void main(String[] args) throws IOException {
10 ProtocolsInstaller.run();
11 DomainInstaller.run();
12 AgentsInstaller.run();
13
14 MainPanel mainpanel = new MainPanel();
15 mainpanel.pack();
16 mainpanel.setVisible(true);
17 }
18}
Note: See TracBrowser for help on using the repository browser.