|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Like Constants, a tag interface that
facilitates locale-sensitive, compile-time binding of constant values
supplied from properties files with the added ability to look up constants at
runtime with a string key.
ConstantsWithLookup extends
Constants and is identical in behavior,
adding only a family of special-purpose lookup methods such as
getString(String).
It is generally preferable to extend Constants rather than
ConstantsWithLookup because ConstantsWithLookup
forces all constants to be retained in the compiled script, preventing the GWT
compiler from pruning unused constant accessors.
com.google.gwt.i18n.I18N.
<module> <!-- other inherited modules, such as com.google.gwt.user.User --> <inherits name="com.google.gwt.i18n.I18N"/> <!-- additional module settings --> </module>
GWT.create(Class).
Constants| Method Summary | |
boolean |
getBoolean(java.lang.String methodName)
Look up boolean by method name. |
double |
getDouble(java.lang.String methodName)
Look up double by method name. |
float |
getFloat(java.lang.String methodName)
Look up float by method name. |
int |
getInt(java.lang.String methodName)
Look up int by method name. |
java.util.Map |
getMap(java.lang.String methodName)
Look up Map by method name. |
java.lang.String |
getString(java.lang.String methodName)
Look up String by method name. |
java.lang.String[] |
getStringArray(java.lang.String methodName)
Look up String[] by method name. |
| Method Detail |
public java.util.Map getMap(java.lang.String methodName)
Map by method name.
methodName - method name
public java.lang.String getString(java.lang.String methodName)
String by method name.
methodName - method name
public java.lang.String[] getStringArray(java.lang.String methodName)
String[] by method name.
methodName - method name
public int getInt(java.lang.String methodName)
int by method name.
methodName - method name
public double getDouble(java.lang.String methodName)
double by method name.
methodName - method name
public float getFloat(java.lang.String methodName)
float by method name.
methodName - method name
public boolean getBoolean(java.lang.String methodName)
boolean by method name.
methodName - method name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||