Package org.zkoss.util.resource
Interface LabelLocator2
-
public interface LabelLocator2
A locater used to locate extra resource forLabels
into an input stream. Once registered (byLabels.register(LabelLocator2)
), the label loader will invokelocate(java.util.Locale)
to locate any extra resource.- Since:
- 5.0.5
- Author:
- tomyeh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCharset()
Returns the encoding charset, or null if it is the same as the system default.java.io.InputStream
locate(java.util.Locale locale)
Returns the input stream containing the label for the specified locale, or null if not available.
-
-
-
Method Detail
-
locate
java.io.InputStream locate(java.util.Locale locale)
Returns the input stream containing the label for the specified locale, or null if not available.It must be thread-safe.
-
getCharset
java.lang.String getCharset()
Returns the encoding charset, or null if it is the same as the system default.The system default is decided by the library property called org.zkoss.util.label.web.charset. If not specified, UTF-8 is assumed.
-
-