Skip to contentMethod: ApplicationMain()
      1: /**
2:  * 
3:  */
4: package main;
5: 
6: /**
7:  * @author Phil The real entry point.
8:  */
9: public final class ApplicationMain {
10:         /**
11:          * The application manager.
12:          */
13:         private final ApplicationManager appManager;
14: 
15:         /**
16:          * private constructor.
17:          */
18:         private ApplicationMain() {
19:                 this.appManager = new ApplicationManager();
20:         }
21: 
22:         /**
23:          * this is a real main-method (not a debugger-leftover).
24:          * 
25:          * @param args
26:          *            The args.
27:          */
28:         public static void main(final String[] args) {
29:                 new ApplicationMain();
30:         }
31: 
32:         /**
33:          * @return the appManager
34:          */
35:         ApplicationManager getAppManager() {
36:                 return this.appManager;
37:         }
38: 
39: }