InterviewSolution
Saved Bookmarks
| 1. |
How onModuleLoad() functions get called if multiple entry-point classes are specified in *.gwt.xml? |
|
Answer» They are called sequentially in the order in which entry-point classes appear in the module file. So when the onModuleLoad() of your first entry point finishes, the next entry point is called immediately. |
|