InterviewSolution
Saved Bookmarks
| 1. |
What is Static String Internationalization technique in GWT? |
|
Answer» 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. |
|