public class LabelLoader extends Object
Labels.
Notice that the encoding of the Locale dependent file (*.properties) is assumed to be UTF-8. If it is not the case, please refer to ZK Configuration Reference for more information.
| Constructor and Description |
|---|
LabelLoader() |
| Modifier and Type | Method and Description |
|---|---|
String |
getLabel(Locale locale,
String key)
Returns the label of the specified key for the specified locale,
or null if not found.
|
String |
getLabel(String key)
Returns the label of the specified key for the current locale,
or null if not found.
|
Map<String,Object> |
getSegmentedLabels()
Returns a map of segmented labels for the current locale (never null).
|
Map<String,Object> |
getSegmentedLabels(Locale locale)
Returns a map of segmented labels for the specified locale (never null).
|
void |
register(LabelLocator locator)
Registers a locator which is used to load the Locale-dependent labels
from other resource, such as servlet contexts.
|
void |
register(LabelLocator2 locator)
Registers a locator which is used to load the Locale-dependent labels
from other resource, such as database.
|
void |
reset()
Resets all cached labels and next call to
getLabel(java.lang.String)
will cause re-loading the Locale-dependent labels. |
VariableResolver |
setVariableResolver(VariableResolver resolv)
Sets the variable resolver, which is used if an EL expression
is specified.
|
public String getLabel(String key)
getSegmentedLabels()public String getLabel(Locale locale, String key)
public Map<String,Object> getSegmentedLabels()
getLabel(java.lang.String), if a key of the label contains dot, it will
be split into multiple keys and then grouped into map. It is so-called
segmented.
For example, the following property file will parsed into a couple of maps,
and getSegmentedLabels() returns a map containing
a single entry. The entry's key is "a" and the value
is another map with two entries "b" and "c".
And, the value for "b" is another two-entries map (containing
"c" and "d").
a.b.c=1
a.b.d=2
a.e=3
This method is designed to make labels easier to be accessed in EL expressions.
On the other hand, getLabel(java.lang.String) does not split them, and
you could access them by, say, getLabel("a.b.d").
public Map<String,Object> getSegmentedLabels(Locale locale)
getSegmentedLabels() for details.public VariableResolver setVariableResolver(VariableResolver resolv)
public void register(LabelLocator locator)
public void register(LabelLocator2 locator)
public void reset()
getLabel(java.lang.String)
will cause re-loading the Locale-dependent labels.Copyright © 2016. All rights reserved.