Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 23 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/AbstractClientMainAppEntryPoint.java

Diff revisions: vs.
  @@ -39,6 +39,7 @@
39 39 /**
40 40 * This is the entry point method.
41 41 */
42 + @Override
42 43 public final void onModuleLoad()
43 44 {
44 45 System.err.println( new UtilDateAdaptor() + " | Application Client Start Up" );
  @@ -75,16 +76,19 @@
75 76 return RootPanel.get( APP_PANEL );
76 77 }
77 78
79 + @Override
78 80 public void onAppLoad()
79 81 {
80 82 nativeCodeInjection();
81 83 prefetchImages();
82 84 }
83 85
86 + @Override
84 87 public void onWindowClosing( Window.ClosingEvent pEvent )
85 88 {
86 89 }
87 90
91 + @Override
88 92 public void onClose( CloseEvent<Window> pEvent )
89 93 {
90 94 sWindowClosing = true;
  @@ -92,15 +96,18 @@
92 96 CLIENT_LOGGER.trace.log( "WindowClosing..." );
93 97 }
94 98
99 + @Override
95 100 public void prefetchImages()
96 101 {
97 102 AlertManager.prefetchImages();
98 103 }
99 104
105 + @Override
100 106 public void nativeCodeInjection()
101 107 {
102 108 }
103 109
110 + @Override
104 111 public void nativeCodeDispose()
105 112 {
106 113 }
  @@ -155,6 +162,7 @@
155 162 mEntryPoint = pEntryPoint;
156 163 }
157 164
165 + @Override
158 166 public void onUncaughtException( Throwable e )
159 167 {
160 168 if ( !sWindowClosing )