Package org.zkoss.util.resource
Interface LabelLocator
-
- All Known Implementing Classes:
ServletLabelLocator
public interface LabelLocator
A locater used to locate extra resource forLabels
. Once registered (byLabels.register(LabelLocator)
), the label loader will invokelocate(java.util.Locale)
to locate any extra resource.If the resource is not easy to be represented in URL, you could implement
LabelLocator2
instead.- Author:
- tomyeh
- See Also:
LabelLocator2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URL
locate(java.util.Locale locale)
Returns URL containing the labels for the specified locale, or null if not available.
-