Package org.pushingpixels.substance.api
Interface SubstanceComponentPlugin
-
public interface SubstanceComponentPluginBasic 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(SubstanceSkin skin)Retrieves a collection of custom settings based on the specified skin.default voidinitialize()Initializesthisplugin.default voiduninitialize()Unitializesthisplugin.
-
-
-
Method Detail
-
initialize
default void initialize()
Initializesthisplugin.
-
uninitialize
default void uninitialize()
Unitializesthisplugin.
-
getDefaults
java.lang.Object[] getDefaults(SubstanceSkin 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.
-
-