javax.swing
Class UIDefaults

java.lang.Object
  |
  +--java.util.Dictionary
        |
        +--java.util.Hashtable
              |
              +--javax.swing.UIDefaults
All Implemented Interfaces:
Cloneable, Map, Serializable
Direct Known Subclasses:
MultiUIDefaults

public class UIDefaults
extends Hashtable

Unsafe:

See Also:
Serialized Form

Field Summary
private  SwingPropertyChangeSupport changeSupport
           
private  Locale defaultLocale
           
private static Object PENDING
           
private  Vector resourceBundles
           
private  Map resourceCache
          Maps from a Locale to a cached Map of the ResourceBundle.
 
Fields inherited from class java.util.Hashtable
 
Constructor Summary
UIDefaults()
          Suppressed: Create an empty defaults table.
UIDefaults(Object[] keyValueList)
          Suppressed: Create a defaults table initialized with the specified key/value pairs.
 
Method Summary
 void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
          Suppressed: Adds a PropertyChangeListener to the listener list.
 void addResourceBundle(String bundleName)
          Suppressed: Adds a resource bundle to the list of resource bundles that are searched for localized values.
protected  void firePropertyChange(String propertyName, Object oldValue, Object newValue)
          Support for reporting bound property changes.
 Object get(Object key)
          Suppressed: Returns the value for key.
 Object get(Object key, Locale l)
          Suppressed: Returns the value for key associated with the given locale.
 boolean getBoolean(Object key)
          Suppressed: If the value of key is boolean, return the boolean value, otherwise return false.
 boolean getBoolean(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is boolean, return the boolean value, otherwise return false.
 javax.swing.border.Border getBorder(Object key)
          Suppressed: If the value of key is a Border return it, otherwise return null.
 javax.swing.border.Border getBorder(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is a Border return it, otherwise return null.
 Color getColor(Object key)
          Suppressed: If the value of key is a Color return it, otherwise return null.
 Color getColor(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is a Color return it, otherwise return null.
 Locale getDefaultLocale()
          Suppressed: Returns the default locale.
 Dimension getDimension(Object key)
          Suppressed: If the value of key is a Dimension return it, otherwise return null.
 Dimension getDimension(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is a Dimension return it, otherwise return null.
 Font getFont(Object key)
          Suppressed: If the value of key is a Font return it, otherwise return null.
 Font getFont(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is a Font return it, otherwise return null.
private  Object getFromHashtable(Object key)
          Looks up up the given key in our Hashtable and resolves LazyValues or ActiveValues.
private  Object getFromResourceBundle(Object key, Locale l)
          Looks up given key in our resource bundles.
 Icon getIcon(Object key)
          Suppressed: If the value of key is an Icon return it, otherwise return null.
 Icon getIcon(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is an Icon return it, otherwise return null.
 Insets getInsets(Object key)
          Suppressed: If the value of key is an Insets return it, otherwise return null.
 Insets getInsets(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is an Insets return it, otherwise return null.
 int getInt(Object key)
          Suppressed: If the value of key is an Integer return its integer value, otherwise return 0.
 int getInt(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is an Integer return its integer value, otherwise return 0.
 java.beans.PropertyChangeListener[] getPropertyChangeListeners()
          Suppressed: Returns an array of all the PropertyChangeListeners added to this UIDefaults with addPropertyChangeListener().
private  Map getResourceCache(Locale l)
          Returns a Map of the known resources for the given locale.
 String getString(Object key)
          Suppressed: If the value of key is a String return it, otherwise return null.
 String getString(Object key, Locale l)
          Suppressed: If the value of key for the given Locale is a String return it, otherwise return null.
 javax.swing.plaf.ComponentUI getUI(JComponent target)
          Suppressed: Creates an ComponentUI implementation for the specified component.
 Class getUIClass(String uiClassID)
          Suppressed: Returns the L&F class that renders this component.
 Class getUIClass(String uiClassID, ClassLoader uiClassLoader)
          Suppressed: The value of get(uidClassID) must be the String name of a class that implements the corresponding ComponentUI class.
protected  void getUIError(String msg)
          If getUI() fails for any reason, it calls this method before returning null.
 Object put(Object key, Object value)
          Suppressed: Sets the value of key to value for all locales.
 void putDefaults(Object[] keyValueList)
          Suppressed: Puts all of the key/value pairs in the database and unconditionally generates one PropertyChangeEvent.
 void removePropertyChangeListener(java.beans.PropertyChangeListener listener)
          Suppressed: Removes a PropertyChangeListener from the listener list.
 void removeResourceBundle(String bundleName)
          Suppressed: Removes a resource bundle from the list of resource bundles that are searched for localized defaults.
 void setDefaultLocale(Locale l)
          Suppressed: Sets the default locale.
 
Methods inherited from class java.util.Hashtable
clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, hashCode, isEmpty, keys, keySet, putAll, rehash, remove, size, toString, values
 
Methods inherited from class java.util.Dictionary
iterate
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

PENDING

private static final Object PENDING

changeSupport

private SwingPropertyChangeSupport changeSupport

resourceBundles

private Vector resourceBundles

defaultLocale

private Locale defaultLocale

resourceCache

private Map resourceCache
Maps from a Locale to a cached Map of the ResourceBundle. This is done so as to avoid an exception being thrown when a value is asked for. Access to this should be done while holding a lock on the UIDefaults, eg synchronized(this).

Constructor Detail

UIDefaults

public UIDefaults()
Suppressed: Create an empty defaults table.


UIDefaults

public UIDefaults(Object[] keyValueList)
Suppressed: Create a defaults table initialized with the specified key/value pairs. For example:
        Object[] uiDefaults = {
             "Font", new Font("Dialog", Font.BOLD, 12),
            "Color", Color.red,
             "five", new Integer(5)
        }
        UIDefaults myDefaults = new UIDefaults(uiDefaults);
 

Parameters:
keyValueList - an array of objects containing the key/value pairs
Method Detail

get

public Object get(Object key)
Suppressed: Returns the value for key. If the value is a UIDefaults.LazyValue then the real value is computed with LazyValue.createValue(), the table entry is replaced, and the real value is returned. If the value is an UIDefaults.ActiveValue the table entry is not replaced - the value is computed with ActiveValue.createValue() for each get() call. If the key is not found in the table then it is searched for in the list of resource bundles maintained by this object. The resource bundles are searched most recently added first using the locale returned by getDefaultLocale. LazyValues and ActiveValues are not supported in the resource bundles.

Specified by:
get in interface Map
Overrides:
get in class Hashtable
Parameters:
key - the desired key
Returns:
the value for key
Since:
1.4
See Also:
LazyValue, ActiveValue, java.util.Hashtable#get, getDefaultLocale(), addResourceBundle(java.lang.String)

getFromHashtable

private Object getFromHashtable(Object key)
Looks up up the given key in our Hashtable and resolves LazyValues or ActiveValues.


get

public Object get(Object key,
                  Locale l)
Suppressed: Returns the value for key associated with the given locale. If the value is a UIDefaults.LazyValue then the real value is computed with LazyValue.createValue(), the table entry is replaced, and the real value is returned. If the value is an UIDefaults.ActiveValue the table entry is not replaced - the value is computed with ActiveValue.createValue() for each get() call. If the key is not found in the table then it is searched for in the list of resource bundles maintained by this object. The resource bundles are searched most recently added first using the given locale. LazyValues and ActiveValues are not supported in the resource bundles.

Parameters:
key - the desired key
l - the desired locale
Returns:
the value for key
Since:
1.4
See Also:
LazyValue, ActiveValue, java.util.Hashtable#get, addResourceBundle(java.lang.String)

getFromResourceBundle

private Object getFromResourceBundle(Object key,
                                     Locale l)
Looks up given key in our resource bundles.


getResourceCache

private Map getResourceCache(Locale l)
Returns a Map of the known resources for the given locale.


put

public Object put(Object key,
                  Object value)
Suppressed: Sets the value of key to value for all locales. If key is a string and the new value isn't equal to the old one, fire a PropertyChangeEvent. If value is null, the key is removed from the table.

Specified by:
put in interface Map
Overrides:
put in class Hashtable
Parameters:
key - the unique Object who's value will be used to retrieve the data value associated with it
value - the new Object to store as data under that key
Returns:
the previous Object value, or null
See Also:
putDefaults(java.lang.Object[]), java.util.Hashtable#put

putDefaults

public void putDefaults(Object[] keyValueList)
Suppressed: Puts all of the key/value pairs in the database and unconditionally generates one PropertyChangeEvent. The events oldValue and newValue will be null and its propertyName will be "UIDefaults". The key/value pairs are added for all locales.

Parameters:
keyValueList - an array of key/value pairs
See Also:
put(java.lang.Object, java.lang.Object), java.util.Hashtable#put

getFont

public Font getFont(Object key)
Suppressed: If the value of key is a Font return it, otherwise return null.

Parameters:
key - the desired key
Returns:
if the value for key is a Font, return the Font object; otherwise return null

getFont

public Font getFont(Object key,
                    Locale l)
Suppressed: If the value of key for the given Locale is a Font return it, otherwise return null.

Parameters:
key - the desired key
l - the desired locale
Returns:
if the value for key and Locale is a Font, return the Font object; otherwise return null
Since:
1.4

getColor

public Color getColor(Object key)
Suppressed: If the value of key is a Color return it, otherwise return null.

Parameters:
key - the desired key
Returns:
if the value for key is a Color, return the Color object; otherwise return null

getColor

public Color getColor(Object key,
                      Locale l)
Suppressed: If the value of key for the given Locale is a Color return it, otherwise return null.

Parameters:
key - the desired key
l - the desired locale
Returns:
if the value for key and Locale is a Color, return the Color object; otherwise return null
Since:
1.4

getIcon

public Icon getIcon(Object key)
Suppressed: If the value of key is an Icon return it, otherwise return null.

Parameters:
key - the desired key
Returns:
if the value for key is an Icon, return the Icon object; otherwise return null

getIcon

public Icon getIcon(Object key,
                    Locale l)
Suppressed: If the value of key for the given Locale is an Icon return it, otherwise return null.

Parameters:
key - the desired key
l - the desired locale
Returns:
if the value for key and Locale is an Icon, return the Icon object; otherwise return null
Since:
1.4

getBorder

public javax.swing.border.Border getBorder(Object key)
Suppressed: If the value of key is a Border return it, otherwise return null.

Parameters:
key - the desired key
Returns:
if the value for key is a Border, return the Border object; otherwise return null

getBorder

public javax.swing.border.Border getBorder(Object key,
                                           Locale l)
Suppressed: If the value of key for the given Locale is a Border return it, otherwise return null.

Parameters:
key - the desired key
l - the desired locale
Returns:
if the value for key and Locale is a Border, return the Border object; otherwise return null
Since:
1.4

getString

public String getString(Object key)
Suppressed: If the value of key is a String return it, otherwise return null.

Parameters:
key - the desired key
Returns:
if the value for key is a String, return the String object; otherwise return null

getString

public String getString(Object key,
                        Locale l)
Suppressed: If the value of key for the given Locale is a String return it, otherwise return null.

Parameters:
key - the desired key
l - the desired Locale
Returns:
if the value for key for the given Locale is a String, return the String object; otherwise return null
Since:
1.4

getInt

public int getInt(Object key)
Suppressed: If the value of key is an Integer return its integer value, otherwise return 0.

Parameters:
key - the desired key
Returns:
if the value for key is an Integer, return its value, otherwise return 0

getInt

public int getInt(Object key,
                  Locale l)
Suppressed: If the value of key for the given Locale is an Integer return its integer value, otherwise return 0.

Parameters:
key - the desired key
l - the desired locale
Returns:
if the value for key and Locale is an Integer, return its value, otherwise return 0
Since:
1.4

getBoolean

public boolean getBoolean(Object key)
Suppressed: If the value of key is boolean, return the boolean value, otherwise return false.

Parameters:
key - an Object specifying the key for the desired boolean value
Returns:
if the value of key is boolean, return the boolean value, otherwise return false.
Since:
1.4

getBoolean

public boolean getBoolean(Object key,
                          Locale l)
Suppressed: If the value of key for the given Locale is boolean, return the boolean value, otherwise return false.

Parameters:
key - an Object specifying the key for the desired boolean value
l - the desired locale
Returns:
if the value for key and Locale is boolean, return the boolean value, otherwise return false.
Since:
1.4

getInsets

public Insets getInsets(Object key)
Suppressed: If the value of key is an Insets return it, otherwise return null.

Parameters:
key - the desired key
Returns:
if the value for key is an Insets, return the Insets object; otherwise return null

getInsets

public Insets getInsets(Object key,
                        Locale l)
Suppressed: If the value of key for the given Locale is an Insets return it, otherwise return null.

Parameters:
key - the desired key
l - the desired locale
Returns:
if the value for key and Locale is an Insets, return the Insets object; otherwise return null
Since:
1.4

getDimension

public Dimension getDimension(Object key)
Suppressed: If the value of key is a Dimension return it, otherwise return null.

Parameters:
key - the desired key
Returns:
if the value for key is a Dimension, return the Dimension object; otherwise return null

getDimension

public Dimension getDimension(Object key,
                              Locale l)
Suppressed: If the value of key for the given Locale is a Dimension return it, otherwise return null.

Parameters:
key - the desired key
l - the desired locale
Returns:
if the value for key and Locale is a Dimension, return the Dimension object; otherwise return null
Since:
1.4

getUIClass

public Class getUIClass(String uiClassID,
                        ClassLoader uiClassLoader)
Suppressed: The value of get(uidClassID) must be the String name of a class that implements the corresponding ComponentUI class. If the class hasn't been loaded before, this method looks up the class with uiClassLoader.loadClass() if a non null class loader is provided, classForName() otherwise.

If a mapping for uiClassID exists or if the specified class can't be found, return null.

This method is used by getUI, it's usually not necessary to call it directly.

Parameters:
uiClassID - a string containing the class ID
uiClassLoader - the object which will load the class
Returns:
the value of Class.forName(get(uidClassID))
See Also:
getUI(javax.swing.JComponent)

getUIClass

public Class getUIClass(String uiClassID)
Suppressed: Returns the L&F class that renders this component.

Parameters:
uiClassID - a string containing the class ID
Returns:
the Class object returned by getUIClass(uiClassID, null)

getUIError

protected void getUIError(String msg)
If getUI() fails for any reason, it calls this method before returning null. Subclasses may choose to do more or less here.

Parameters:
msg - message string to print
See Also:
getUI(javax.swing.JComponent)

getUI

public javax.swing.plaf.ComponentUI getUI(JComponent target)
Suppressed: Creates an ComponentUI implementation for the specified component. In other words create the look and feel specific delegate object for target. This is done in two steps:

Parameters:
target - the JComponent which needs a UI
Returns:
the ComponentUI object

addPropertyChangeListener

public void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Suppressed: Adds a PropertyChangeListener to the listener list. The listener is registered for all properties.

A PropertyChangeEvent will get fired whenever a default is changed.

Parameters:
listener - the PropertyChangeListener to be added
See Also:
java.beans.PropertyChangeSupport

removePropertyChangeListener

public void removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Suppressed: Removes a PropertyChangeListener from the listener list. This removes a PropertyChangeListener that was registered for all properties.

Parameters:
listener - the PropertyChangeListener to be removed
See Also:
java.beans.PropertyChangeSupport

getPropertyChangeListeners

public java.beans.PropertyChangeListener[] getPropertyChangeListeners()
Suppressed: Returns an array of all the PropertyChangeListeners added to this UIDefaults with addPropertyChangeListener().

Returns:
all of the PropertyChangeListeners added or an empty array if no listeners have been added
Since:
1.4

firePropertyChange

protected void firePropertyChange(String propertyName,
                                  Object oldValue,
                                  Object newValue)
Support for reporting bound property changes. If oldValue and newValue are not equal and the PropertyChangeEventx listener list isn't empty, then fire a PropertyChange event to each listener.

Parameters:
propertyName - the programmatic name of the property that was changed
oldValue - the old value of the property
newValue - the new value of the property
See Also:
java.beans.PropertyChangeSupport

addResourceBundle

public void addResourceBundle(String bundleName)
Suppressed: Adds a resource bundle to the list of resource bundles that are searched for localized values. Resource bundles are searched in the reverse order they were added. In other words, the most recently added bundle is searched first.

Parameters:
bundleName - the base name of the resource bundle to be added
Since:
1.4
See Also:
java.util.ResourceBundle, removeResourceBundle(java.lang.String)

removeResourceBundle

public void removeResourceBundle(String bundleName)
Suppressed: Removes a resource bundle from the list of resource bundles that are searched for localized defaults.

Parameters:
bundleName - the base name of the resource bundle to be removed
Since:
1.4
See Also:
java.util.ResourceBundle, addResourceBundle(java.lang.String)

setDefaultLocale

public void setDefaultLocale(Locale l)
Suppressed: Sets the default locale. The default locale is used in retrieving localized values via get methods that do not take a locale argument. As of release 1.4, Swing UI objects should retrieve localized values using the locale of their component rather than the default locale. The default locale exists to provide compatibility with pre 1.4 behaviour.

Since:
1.4
See Also:
getDefaultLocale(), get(Object), get(Object,Locale)

getDefaultLocale

public Locale getDefaultLocale()
Suppressed: Returns the default locale. The default locale is used in retrieving localized values via get methods that do not take a locale argument. As of release 1.4, Swing UI objects should retrieve localized values using the locale of their component rather than the default locale. The default locale exists to provide compatibility with pre 1.4 behaviour.

Since:
1.4
See Also:
setDefaultLocale(java.util.Locale), get(Object), get(Object,Locale)


comments?