My favorites | Sign in
Project Home Downloads Issues Source
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 development

Successor project was created to achieve goals like Maven packaging and non-latin plurals support.

Download

The jar file (8Ko)

How to use it ?

  1. Add the jar into your classpath
  2. On the server side use directly the class GWTI18N
  3. import org.scb.gwt.web.server.i18n;
    ...
    FooMessages msg = GWTI18N.create(FooMessages.class);
    msg.fooBar(...);
Powered by Google Project Hosting