src/org/objectweb/cjdbc/common/i18n/GuiTranslate.java

説明を見る。
00001 00025 package org.objectweb.cjdbc.common.i18n; 00026 00027 import java.util.MissingResourceException; 00028 import java.util.ResourceBundle; 00029 00038 public final class GuiTranslate extends I18N 00039 { 00040 00044 public static final String GUI_LANGUAGE_FILE = "c-jdbc-gui-language"; 00045 00049 public static ResourceBundle bundle; 00050 00051 static 00052 { 00053 try 00054 { 00055 bundle = ResourceBundle.getBundle(GUI_LANGUAGE_FILE); 00056 } 00057 catch (MissingResourceException e) 00058 { 00059 e.printStackTrace(); 00060 } 00061 } 00062 00068 public static String get(String key) 00069 { 00070 return get(bundle, key); 00071 } 00072 00079 public static String get(String key, boolean parameter) 00080 { 00081 return get(bundle, key, parameter); 00082 } 00083 00090 public static String get(String key, int parameter) 00091 { 00092 return get(bundle, key, parameter); 00093 } 00094 00101 public static String get(String key, long parameter) 00102 { 00103 return get(bundle, key, parameter); 00104 } 00105 00112 public static String get(String key, Object[] parameters) 00113 { 00114 return get(bundle, key, parameters); 00115 } 00116 00123 public static String get(String key, Object parameter) 00124 { 00125 return get(bundle, key, parameter); 00126 } 00127 }

CJDBCversion1.0.4に対してTue Oct 12 15:15:57 2004に生成されました。 doxygen 1.3.8