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. 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. |
|