source:
src/main/java/genius/Application.java@
22
Last change on this file since 22 was 21, checked in by , 6 years ago | |
---|---|
File size: 378 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | package genius; |
2 | ||
3 | import java.io.IOException; | |
4 | ||
5 | import genius.domains.DomainInstaller; | |
[21] | 6 | import genius.gui.MainPanel; |
[1] | 7 | |
8 | public class Application { | |
9 | public static void main(String[] args) throws IOException { | |
10 | ProtocolsInstaller.run(); | |
11 | DomainInstaller.run(); | |
12 | AgentsInstaller.run(); | |
[21] | 13 | |
14 | MainPanel mainpanel = new MainPanel(); | |
15 | mainpanel.pack(); | |
16 | mainpanel.setVisible(true); | |
[1] | 17 | } |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.