Interface RadianceThemingComponentPlugin
-
- All Known Implementing Classes:
ColorChooserPlugin
public interface RadianceThemingComponentPlugin
Basic interface for look-and-feel plugins.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.Object[]
getDefaults(RadianceSkin skin)
Retrieves a collection of custom settings based on the specified skin.default void
initialize()
Initializesthis
plugin.default void
uninitialize()
Uninitializesthis
plugin.
-
-
-
Method Detail
-
initialize
default void initialize()
Initializesthis
plugin.
-
uninitialize
default void uninitialize()
Uninitializesthis
plugin.
-
getDefaults
java.lang.Object[] getDefaults(RadianceSkin skin)
Retrieves a collection of custom settings based on the specified skin. The entries in the array should be pairwise, odd being symbolic name of a setting, and even being the setting value.- Parameters:
skin
- Skin.- Returns:
- Collection of custom settings based on the specified skin. The entries in the array should be pairwise, odd being symbolic name of a setting, and even being the setting value.
-
-