You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

I18nConstants.java 369B

1234567891011121314
  1. #set( $symbol_pound = '#' )
  2. #set( $symbol_dollar = '$' )
  3. #set( $symbol_escape = '\' )
  4. package ${package}.page.client;
  5. import com.google.gwt.core.client.GWT;
  6. public interface I18nConstants extends com.google.gwt.i18n.client.Constants {
  7. static I18nConstants INSTANCE = GWT.create(I18nConstants.class);
  8. @DefaultStringValue("This is a sample")
  9. String sample();
  10. }