|
Project Information
Members
|
The aim is to permit to the GWT developer to use their Constants and Messages interfaces on the server side (See internationzation). The implementation is based on java reflect api. It loads the properties files from the classpath (same folder than the interface). It supports Constants, ConstantsWithLookup, Messages (plural too). The licence is LGPL. Future developmentSuccessor project was created to achieve goals like Maven packaging and non-latin plurals support. DownloadThe jar file (8Ko) How to use it ?
import org.scb.gwt.web.server.i18n; ... FooMessages msg = GWTI18N.create(FooMessages.class); msg.fooBar(...); |