本文整理匯總了Java中com.google.gwt.i18n.client.Constants.DefaultStringValue方法的典型用法代碼示例。如果您正苦於以下問題:Java Constants.DefaultStringValue方法的具體用法?Java Constants.DefaultStringValue怎麽用?Java Constants.DefaultStringValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.gwt.i18n.client.Constants
的用法示例。
在下文中一共展示了Constants.DefaultStringValue方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: QP_PAGE
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-page")
String QP_PAGE();
示例2: QP_PROGRESS_BONUS_CONTAINER
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-progress-bonus-container")
String QP_PROGRESS_BONUS_CONTAINER();
示例3: QP_MEDIA_TITLE
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-title")
String QP_MEDIA_TITLE();
示例4: QP_PAGE_ERROR_TEXT
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-page-error-text")
String QP_PAGE_ERROR_TEXT();
示例5: QP_PAGE_IN_PAGE
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-page-in-page")
String QP_PAGE_IN_PAGE();
示例6: main
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
public static void main(String[] args) {
try {
Class clazz = Class.forName(Localization.ROOT + System.getProperty("bundle", "CourseMessages"));
String locale = System.getProperty("locale", "cs");
Properties properties = new Properties();
InputStream is = clazz.getClassLoader().getResourceAsStream(clazz.getName().replace('.', '/') + "_" + locale + ".properties");
if (is != null)
properties.load(is);
System.out.println("\"Key\",\"Default\",\"Value\"");
for (Method method: clazz.getMethods()) {
DefaultMessage dm = method.getAnnotation(DefaultMessage.class);
String text = properties.getProperty(method.getName());
if (dm != null)
System.out.println("\"" + method.getName() + "\",\"" + dm.value() + "\",\"" + (text == null ? "" : text) + "\"");
Constants.DefaultBooleanValue db = method.getAnnotation(Constants.DefaultBooleanValue.class);
if (db != null)
System.out.println("\"" + method.getName() + "\",\"" + (db.value() ? "true" : "false") + "\",\"" + (text == null ? "" : text) + "\"");
Constants.DefaultDoubleValue dd = method.getAnnotation(Constants.DefaultDoubleValue.class);
if (dd != null)
System.out.println("\"" + method.getName() + "\",\"" + dd.value() + "\",\"" + (text == null ? "" : text) + "\"");
Constants.DefaultFloatValue df = method.getAnnotation(Constants.DefaultFloatValue.class);
if (df != null)
System.out.println("\"" + method.getName() + "\",\"" + df.value() + "\",\"" + (text == null ? "" : text) + "\"");
Constants.DefaultIntValue di = method.getAnnotation(Constants.DefaultIntValue.class);
if (di != null)
System.out.println("\"" + method.getName() + "\",\"" + di.value() + "\",\"" + (text == null ? "" : text) + "\"");
Constants.DefaultStringValue ds = method.getAnnotation(Constants.DefaultStringValue.class);
if (ds != null)
System.out.println("\"" + method.getName() + "\",\"" + ds.value() + "\",\"" + (text == null ? "" : text) + "\"");
Constants.DefaultStringArrayValue dsa = method.getAnnotation(Constants.DefaultStringArrayValue.class);
if (dsa != null)
System.out.println("\"" + method.getName() + "\",\"" + array2string(dsa.value()) + "\",\"" + (text == null ? "" : text) + "\"");
Constants.DefaultStringMapValue dsm = method.getAnnotation(Constants.DefaultStringMapValue.class);
if (dsm != null)
System.out.println("\"" + method.getName() + "\",\"" + array2string(dsm.value()) + "\",\"" + (text == null ? "" : text) + "\"");
}
} catch (Exception e) {
e.printStackTrace();
}
}
示例7: QP_PAGE_NEXT
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-page-next")
String QP_PAGE_NEXT();
示例8: QP_MEDIA_PLAY_STOP
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-play-stop")
String QP_MEDIA_PLAY_STOP();
示例9: QP_PAGE_PREV
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-page-prev")
String QP_PAGE_PREV();
示例10: QP_MEDIA_PROGRESSBAR_CENTER_BUTTON_AFTER
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-progressbar-center-button-after")
String QP_MEDIA_PROGRESSBAR_CENTER_BUTTON_AFTER();
示例11: QP_MEDIA_POSITIONINSTREAM
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-positioninstream")
String QP_MEDIA_POSITIONINSTREAM();
示例12: QP_MEDIA_VOLUME_SCROLLBAR_BUTTON
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-volume-scrollbar-button")
String QP_MEDIA_VOLUME_SCROLLBAR_BUTTON();
示例13: QP_MEDIA_VOLUME_SCROLLBAR
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-volume-scrollbar")
String QP_MEDIA_VOLUME_SCROLLBAR();
示例14: QP_MEDIA_CURRENTTIME
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-currenttime")
String QP_MEDIA_CURRENTTIME();
示例15: QP_MEDIA_DESCRIPTION
import com.google.gwt.i18n.client.Constants; //導入方法依賴的package包/類
@Constants.DefaultStringValue("qp-media-description")
String QP_MEDIA_DESCRIPTION();