InterviewSolution
Saved Bookmarks
| 1. |
What Is An Entry-point Class? |
|
Answer» A module ENTRY-point is any CLASS that is assignable to ENTRYPOINT and that can be constructed without parameters. When a module is loaded, every entry point class is instantiated and its EntryPoint.onModuleLoad() METHOD gets called. A module entry-point is any class that is assignable to EntryPoint and that can be constructed without parameters. When a module is loaded, every entry point class is instantiated and its EntryPoint.onModuleLoad() method gets called. |
|