1.What is GWT?Google Web Toolkit GWT is a development toolkit for building and optimizing complex browserbased applications. GWT is used by many products at Google, including Google AdWords and Orkut. 2.What are the features of GWT?Following are the features of GWT −
3.Why we should use GWT?Following are the reasons to prefer GWT for development projects −
4.What are the disadvantages of GWT?Following are the disadvantages of GWT −
5.What are the core components of GWT?Following are the core components of GWT −
6.What are the components of a GWT application?A GWT application consists of following four important parts out of which last part is optional but
7.What is Module descriptor in GWT?A module descriptor is the configuration file in the form of XML which is used to configure a GWT application. A module descriptor file extension is *.gwt.xml, where * is the name of the application and this file should reside in the project's root. 8.What is the purpose of 'module' tag in *.gwt.xml file in GWT?This provides name of the application. 9.What is the purpose of 'inherits' tag in *.gwt.xml file in GWT?This adds other gwt module in application just like import does in java applications. Any number of modules can be inherited in this manner. 10.What is the purpose of 'entry-point' tag in *.gwt.xml file in GWT?This specifies the name of class which will start loading the GWT Application. 11.Can you have multiple entry-point classes in a *.gwt.xml file?Yes! Any number of entry-point classes can be added. 12.Which method of a entry-point class is called when GWT application starts?onModuleLoad function gets called and acts similar to main method of a java application. 13.How onModuleLoad functions get called if multiple entry-point classes are specified in *.gwt.xml?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. 14.What is the purpose of 'source' tag in *.gwt.xml file in GWT?This specifies the names of source folders which GWT compiler will search for source compilation. 15.What is the purpose of 'public' tag in *.gwt.xml file in GWT?The public path is the place in your project where static resources referenced by your GWT module, such as CSS or images, are stored. 16.What is default public path for static resources in GWT application?The default public path is the public subdirectory underneath where the Module XML File is stored. 17.What is the purpose of 'script' tag in *.gwt.xml file in GWT?Automatically injects the external JavaScript file located at the location specified by src. 18.What is the purpose of 'stylesheet' tag in *.gwt.xml file in GWT?Automatically injects the external CSS file located at the location specified by src. 19.What is an entry-point class?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. 20.What is *.nocache.js file in GWT?It contains the javascript code required to resolve deferred binding configuarations forexample, browserdetection and to use lookup table generated by GWT compiler to locate one of the .cache.html. |