Package org.pushingpixels.lafwidget
Class LafWidgetRepository
java.lang.Object
org.pushingpixels.lafwidget.LafWidgetRepository
Repository of LAF widgets.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
Information on a single class. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected boolean
Indicates whether the currently registered LAF support is custom (notLafWidgetSupport
).protected LafWidgetSupport
Currently registered LAF support.protected static LafWidgetRepository
Singleton instance.Contains fully qualified class names of widgets that should not be installed on any components.protected Map
<Class<?>, Set<LafWidgetRepository.LafWidgetClassInfo>> All registered widgets. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addToIgnoreWidgets
(String widgetClassName) Marks widget with the specified class name to never be installed on any components.static ResourceBundle
Retrieves the current label bundle.static ResourceBundle
getLabelBundle
(Locale locale) Retrieves the label bundle for the specified locale.Returns the currently set LAF support.getMatchingWidgets
(JComponent jcomp) Returns a set of widgets that match the specified component.static LafWidgetRepository
Returns the widget repository.void
populate()
Populates the widget repository.protected void
populateFrom
(URL url) Populates the repository from the specified URL.void
registerWidget
(String widgetClassName, Class<?> supportedClass, boolean isExact) Registers a new widget for the specified UI class.void
registerWidget
(String widgetClassName, List<Class<?>> supportedClasses) Registers a new widget for the specified UI classes.static void
Resets the current label bundle.static void
setLabelBundleClassLoader
(ClassLoader labelBundleClassLoader) Sets the class loader forLABEL_BUNDLE
.void
setLafSupport
(LafWidgetSupport lafSupport) Sets LAF support.void
Unsets custom LAF support and reverts to the base LAF support.
-
Field Details
-
widgets
-
widgetClassesToIgnore
Contains fully qualified class names of widgets that should not be installed on any components. -
lafSupport
Currently registered LAF support. -
isCustomLafSupportSet
protected boolean isCustomLafSupportSetIndicates whether the currently registered LAF support is custom (notLafWidgetSupport
). -
repository
Singleton instance.
-
-
Method Details
-
getRepository
Returns the widget repository.- Returns:
- Widget repository.
-
populateFrom
Populates the repository from the specified URL. The URL should point to a properties file, the key being the fully-qualified class name of the widget implementation, the value being semicolon-separated fully-qualified class names of classes in UI component hierarchy. Sample property file:org.pushingpixels.lafwidget.text.PasswordStrengthCheckerWidget = javax.swing.JPasswordField org.pushingpixels.lafwidget.text.LockBorderWidget = javax.swing.text.JTextComponent;javax.swing.JComboBox
- Parameters:
url
- URL that points to a properties file.
-
populate
public void populate()Populates the widget repository. The classpath is scanned for all resources that match the nameMETA-INF/lafwidget.properties
.- See Also:
-
registerWidget
Registers a new widget for the specified UI classes. The list should containClass
instances.- Parameters:
widgetClassName
- Full-qualified class name for the widget.supportedClasses
- Classes supported by the widget.
-
registerWidget
Registers a new widget for the specified UI class.- Parameters:
widgetClassName
- Full-qualified class name for the widget.supportedClass
- Class supported by the widget.isExact
- iftrue
, the widget will be available only for the components of the specified class. Iffalse
, the widget be available for the components of the specified class and all its descendants (as defined in theClass.isAssignableFrom(Class)
).
-
getMatchingWidgets
Returns a set of widgets that match the specified component. The component hierarchy is scanned bottom-up and all matching widget classes are used to instantiate new instance of widgets. In case theisCustomLafSupportSet
isfalse
, only widgets that returnfalse
inLafWidget.requiresCustomLafSupport()
are returned.- Parameters:
jcomp
- UI component.- Returns:
- Set of widgets that match the specified component.
-
setLafSupport
Sets LAF support.- Parameters:
lafSupport
- LAF support.- Throws:
IllegalArgumentException
- If the LAF support isnull
.
-
unsetLafSupport
public void unsetLafSupport()Unsets custom LAF support and reverts to the base LAF support. -
getLafSupport
Returns the currently set LAF support. The result is guaranteed to be non-null
.- Returns:
- Currently set non-
null
LAF support.
-
getLabelBundle
Retrieves the current label bundle.- Returns:
- The current label bundle.
- See Also:
-
getLabelBundle
Retrieves the label bundle for the specified locale.- Parameters:
locale
- Locale.- Returns:
- The label bundle for the specified locale.
-
resetLabelBundle
public static void resetLabelBundle()Resets the current label bundle. Useful when the application changes Locale at runtime.- See Also:
-
setLabelBundleClassLoader
Sets the class loader forLABEL_BUNDLE
.- Parameters:
labelBundleClassLoader
- Class loader forLABEL_BUNDLE
.- Since:
- version 1.1
-
addToIgnoreWidgets
Marks widget with the specified class name to never be installed on any components.- Parameters:
widgetClassName
- Fully qualified widget class name.
-