81.What is GWT RPC?
82.What are the core components of GWT RPC?Following are the three components used in GWT RPC communication mechanism:
83.Which interface a java data object should implement so that it can be transferred over the wire in GWT RPC?A java data object should implement isSerializable interface so that it can be transferred over the wire in GWT RPC. 84.What is internationalization?Internationalization is a way to show locale specific information on a website. For example, display content of a website in English language in United States and in Danish in France. 85.What are the ways using which you can internationalize a GWT application?GWT provides three ways to internationalize a GWT application −
86.What is Static String Internationalization technique in GWT?This technique is most prevalent and requires very little overhead at runtime; is a very efficient technique for translating both constant and parameterized strings;simplest to implement. Static string internationalization uses standard Java properties files to store translated strings and parameterized messages, and strongly-typed Java interfaces are created to retrieve their values. 87.What is Dynamic String Internationalization technique in GWT?This technique is very flexible but slower than static string internationalization. Host page contains the localized strings therefore, applications are not required to be recompiled when we add a new locale. If GWT application is to be integrated with an existing server-side localization system, then this technique is to be used. 88.What is Localizable Interface internationalization technique in GWT?This technique is the most powerful among the three techniques. Implementing Localizable allows us to create localized versions of custom types. It's an advanced internationalization technique. 89.Which tag of *.gwt.xml is used to support internationalization in GWT application?extend-property tag with attribute name set as locale and values as language specific locale, say de for german locale. 90.How to enable history support in GWT application?In order to use GWT History support, we must first embed following iframe into our host HTML page.
<ifram e src="javascript:''" ></ifram e>
91.What is GWT logging framework?The logging framework emulates java.util.logging, so it uses the same syntax and has the same
behavior as server side logging code. 92.What is SystemLogHandler in GWT?SystemLogHandler logs to stdout and these messages can only be seen in Development Mode in the DevMode window. 93.What is DevelopmentModeLogHandler in GWT?DevelopmentModeLogHandler logs by calling method GWT.log. These messages can only be seen in Development Mode in the DevMode window. 94.What is ConsoleLogHandler in GWT?ConsoleLogHandler logs to the javascript console, which is used by Firebug Lite forIE, Safari and Chrome. 95.What is FirebugLogHandler in GWT?FirebugLogHandler logs to Firebug console. 96.What is PopupLogHandler in GWT?PopupLogHandler logs to the popup which resides in the upper left hand corner of application when this handler is enabled. 97.What is SimpleRemoteLogHandler in GWT?This handler sends log messages to the server, where they will be logged using the server side logging mechanism. 98.?
99.?
100.?
|