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 300B

1234567891011
  1. package org.sonar.plugins.gwtsample.page.client;
  2. import com.google.gwt.core.client.GWT;
  3. public interface I18nConstants extends com.google.gwt.i18n.client.Constants {
  4. static I18nConstants INSTANCE = GWT.create(I18nConstants.class);
  5. @DefaultStringValue("This is a sample")
  6. String sample();
  7. }