Liking cljdoc? Tell your friends :D
Clojure only.

jdk.util.spi.ResourceBundleControlProvider

An interface for service providers that provide implementations of ResourceBundle.Control. The default resource bundle loading behavior of the ResourceBundle.getBundle factory methods that take no ResourceBundle.Control instance can be modified with ResourceBundleControlProvider implementations.

Provider implementations must be packaged using the Java Extension Mechanism as installed extensions. Refer to ServiceLoader for the extension packaging. Any installed ResourceBundleControlProvider implementations are loaded using ServiceLoader at the ResourceBundle class loading time.

An interface for service providers that provide implementations of ResourceBundle.Control. The default resource bundle loading
behavior of the ResourceBundle.getBundle factory methods that take
no ResourceBundle.Control instance can be modified with ResourceBundleControlProvider implementations.

Provider implementations must be packaged using the Java Extension
Mechanism as installed extensions. Refer to ServiceLoader
for the extension packaging. Any installed ResourceBundleControlProvider implementations are loaded using ServiceLoader at the ResourceBundle class loading time.
raw docstring

get-controlclj

(get-control this base-name)

Returns a ResourceBundle.Control instance that is used to handle resource bundle loading for the given baseName. This method must return null if the given baseName isn't handled by this provider.

base-name - the base name of the resource bundle - java.lang.String

returns: a ResourceBundle.Control instance, or null if the given baseName is not applicable to this provider. - java.util.ResourceBundle$Control

throws: java.lang.NullPointerException - if baseName is null

Returns a ResourceBundle.Control instance that is used
 to handle resource bundle loading for the given baseName. This method must return null if the given
 baseName isn't handled by this provider.

base-name - the base name of the resource bundle - `java.lang.String`

returns: a ResourceBundle.Control instance,
         or null if the given baseName is not
         applicable to this provider. - `java.util.ResourceBundle$Control`

throws: java.lang.NullPointerException - if baseName is null
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close