選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }