1 package net.sf.panoptes;
2
3 import net.sf.panoptes.controller.MainController;
4 import net.sf.panoptes.view.MainWindow;
5
6
7 /***
8 * ConsoleRunner.java
9 *
10 * @author Dag Liodden
11 * @version 0.1
12 */
13 public class ConsoleRunner {
14
15
16 public static void main(String[] args) throws Exception {
17 MainController controller = new MainController();
18 MainWindow w = controller.getMainWindow();
19 w.setBlockOnOpen(true);
20 w.open();
21 System.exit(0);
22 }
23 }
This page was automatically generated by Maven