Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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