(String[] args)
| 33 | private GraphUI graphUI; |
| 34 | |
| 35 | public static void main(String[] args) |
| 36 | { |
| 37 | handleArgs(args); |
| 38 | |
| 39 | Graphwar graphwar = new Graphwar(); |
| 40 | |
| 41 | graphwar.init(); |
| 42 | |
| 43 | // This is this way because it was adapted from an applet |
| 44 | while(true) |
| 45 | { |
| 46 | try { |
| 47 | Thread.sleep(10000); |
| 48 | } catch (InterruptedException e) { |
| 49 | // TODO Auto-generated catch block |
| 50 | e.printStackTrace(); |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | public static void handleArgs(String[] args) |
| 56 | { |
nothing calls this directly
no test coverage detected