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