This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.swing
class UIManager

java.lang.Object extended by javax.swing.UIManager
All Implemented Interfaces:
Serializable

public class UIManager
extends Object
implements Serializable

{@code UIManager} manages the current look and feel, the set of available look and feels, {@code PropertyChangeListeners} that are notified when the look and feel changes, look and feel defaults, and convenience methods for obtaining various default values.

Specifying the look and feel

The look and feel can be specified in two distinct ways: by specifying the fully qualified name of the class for the look and feel, or by creating an instance of {@code LookAndFeel} and passing it to {@code setLookAndFeel}. The following example illustrates setting the look and feel to the system look and feel:
   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
 
The following example illustrates setting the look and feel based on class name:
   UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
 
Once the look and feel has been changed it is imperative to invoke {@code updateUI} on all {@code JComponents}. The method {@link SwingUtilities#updateComponentTreeUI} makes it easy to apply {@code updateUI} to a containment hierarchy. Refer to it for details. The exact behavior of not invoking {@code updateUI} after changing the look and feel is unspecified. It is very possible to receive unexpected exceptions, painting problems, or worse.

Default look and feel

The class used for the default look and feel is chosen in the following manner:
  1. If the system property swing.defaultlaf is {@code non-null}, use its value as the default look and feel class name.
  2. If the {@link java.util.Properties} file swing.properties exists and contains the key swing.defaultlaf, use its value as the default look and feel class name. The location that is checked for swing.properties may vary depending upon the implementation of the Java platform. In Sun's implementation the location is ${java.home}/lib/swing.properties. Refer to the release notes of the implementation being used for further details.
  3. Otherwise use the cross platform look and feel.

Defaults

{@code UIManager} manages three sets of {@code UIDefaults}. In order, they are:
  1. Developer defaults. With few exceptions Swing does not alter the developer defaults; these are intended to be modified and used by the developer.
  2. Look and feel defaults. The look and feel defaults are supplied by the look and feel at the time it is installed as the current look and feel ({@code setLookAndFeel()} is invoked). The look and feel defaults can be obtained using the {@code getLookAndFeelDefaults()} method.
  3. Sytem defaults. The system defaults are provided by Swing.
Invoking any of the various {@code get} methods results in checking each of the defaults, in order, returning the first {@code non-null} value. For example, invoking {@code UIManager.getString("Table.foreground")} results in first checking developer defaults. If the developer defaults contain a value for {@code "Table.foreground"} it is returned, otherwise the look and feel defaults are checked, followed by the system defaults.

It's important to note that {@code getDefaults} returns a custom instance of {@code UIDefaults} with this resolution logic built into it. For example, {@code UIManager.getDefaults().getString("Table.foreground")} is equivalent to {@code UIManager.getString("Table.foreground")}. Both resolve using the algorithm just described. In many places the documentation uses the word defaults to refer to the custom instance of {@code UIDefaults} with the resolution logic as previously described.

When the look and feel is changed, {@code UIManager} alters only the look and feel defaults; the developer and system defaults are not altered by the {@code UIManager} in any way.

The set of defaults a particular look and feel supports is defined and documented by that look and feel. In addition, each look and feel, or {@code ComponentUI} provided by a look and feel, may access the defaults at different times in their life cycle. Some look and feels may agressively look up defaults, so that changing a default may not have an effect after installing the look and feel. Other look and feels may lazily access defaults so that a change to the defaults may effect an existing look and feel. Finally, other look and feels might not configure themselves from the defaults table in any way. None-the-less it is usually the case that a look and feel expects certain defaults, so that in general a {@code ComponentUI} provided by one look and feel will not work with another look and feel.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see {@link java.beans.XMLEncoder}.


Nested Class Summary
static class

           Provides a little information about an installed LookAndFeel for the sake of configuring a menu or for initial application set up.
 
Constructor Summary

          
 
Method Summary
static void

          Adds a LookAndFeel to the list of auxiliary look and feels.
static void

          Adds a PropertyChangeListener to the listener list.
static Object
get(Object key)

          Returns an object from the defaults.
static Object
get(Object key, Locale l)

          Returns an object from the defaults that is appropriate for the given locale.
static LookAndFeel[]

          Returns the list of auxiliary look and feels (can be null).
static boolean

          Returns a boolean from the defaults which is associated with the key value.
static boolean

          Returns a boolean from the defaults which is associated with the key value and the given Locale.
static Border

          Returns a border from the defaults.
static Border

          Returns a border from the defaults that is appropriate for the given locale.
static Color

          Returns a color from the defaults.
static Color

          Returns a color from the defaults that is appropriate for the given locale.
static String

          Returns the name of the LookAndFeel class that implements the default cross platform look and feel -- the Java Look and Feel (JLF).
static UIDefaults

          Returns the defaults.
static Dimension

          Returns a dimension from the defaults.
static Dimension

          Returns a dimension from the defaults that is appropriate for the given locale.
static Font

          Returns a font from the defaults.
static Font

          Returns a font from the defaults that is appropriate for the given locale.
static Icon

          Returns an Icon from the defaults.
static Icon

          Returns an Icon from the defaults that is appropriate for the given locale.
static Insets

          Returns an Insets object from the defaults.
static Insets

          Returns an Insets object from the defaults that is appropriate for the given locale.
static UIManager.LookAndFeelInfo[]

          Returns an array of s representing the implementations currently available.
static int

          Returns an integer from the defaults.
static int
getInt(Object key, Locale l)

          Returns an integer from the defaults that is appropriate for the given locale.
static LookAndFeel

          Returns the current look and feel or null.
static UIDefaults

          Returns the from the current look and feel, that were obtained at the time the look and feel was installed.
static PropertyChangeListener[]

          Returns an array of all the PropertyChangeListeners added to this UIManager with addPropertyChangeListener().
static String

          Returns a string from the defaults.
static String

          Returns a string from the defaults that is appropriate for the given locale.
static String

          Returns the name of the LookAndFeel class that implements the native system look and feel if there is one, otherwise the name of the default cross platform LookAndFeel class.
static ComponentUI
getUI(JComponent target)

          Returns the appropriate implementation for .
static void
installLookAndFeel(String name, String className)

          Adds the specified look and feel to the set of available look and feels.
static void

          Adds the specified look and feel to the set of available look and feels.
static Object
put(Object key, Object value)

          Stores an object in the developer defaults.
static boolean

          Removes a LookAndFeel from the list of auxiliary look and feels.
static void

          Removes a PropertyChangeListener from the listener list.
static void

          Sets the set of available look and feels.
static void
setLookAndFeel(LookAndFeel newLookAndFeel)

          Sets the current look and feel to .
static void

          Loads the specified by the given class name, using the current thread's context class loader, and passes it to .
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UIManager

public UIManager()
Method Detail

addAuxiliaryLookAndFeel

public static void addAuxiliaryLookAndFeel(LookAndFeel laf)
Adds a LookAndFeel to the list of auxiliary look and feels. The auxiliary look and feels tell the multiplexing look and feel what other LookAndFeel classes for a component instance are to be used in addition to the default LookAndFeel class when creating a multiplexing UI. The change will only take effect when a new UI class is created or when the default look and feel is changed on a component instance.

Note these are not the same as the installed look and feels.

Parameters:
laf - the LookAndFeel object

addPropertyChangeListener

public static void addPropertyChangeListener(PropertyChangeListener listener)
Adds a PropertyChangeListener to the listener list. The listener is registered for all properties.

Parameters:
listener - the PropertyChangeListener to be added

get

public static Object get(Object key)
Returns an object from the defaults.

Parameters:
key - an Object specifying the desired object
Returns:
the Object

get

public static Object get(Object key,
                         Locale l)
Returns an object from the defaults that is appropriate for the given locale.

Parameters:
key - an Object specifying the desired object
l - the Locale for which the object is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the Object

getAuxiliaryLookAndFeels

public static LookAndFeel[] getAuxiliaryLookAndFeels()
Returns the list of auxiliary look and feels (can be null). The auxiliary look and feels tell the multiplexing look and feel what other LookAndFeel classes for a component instance are to be used in addition to the default LookAndFeel class when creating a multiplexing UI.

Note these are not the same as the installed look and feels.

Returns:
list of auxiliary LookAndFeels or null

getBoolean

public static boolean getBoolean(Object key)
Returns a boolean from the defaults which is associated with the key value. If the key is not found or the key doesn't represent a boolean value then {@code false} is returned.

Parameters:
key - an Object specifying the key for the desired boolean value
Returns:
the boolean value corresponding to the key

getBoolean

public static boolean getBoolean(Object key,
                                 Locale l)
Returns a boolean from the defaults which is associated with the key value and the given Locale. If the key is not found or the key doesn't represent a boolean value then {@code false} will be returned.

Parameters:
key - an Object specifying the key for the desired boolean value
l - the Locale for which the boolean is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the boolean value corresponding to the key

getBorder

public static Border getBorder(Object key)
Returns a border from the defaults. If the value for {@code key} is not a {@code Border}, {@code null} is returned.

Parameters:
key - an Object specifying the border
Returns:
the Border object

getBorder

public static Border getBorder(Object key,
                               Locale l)
Returns a border from the defaults that is appropriate for the given locale. If the value for {@code key} is not a {@code Border}, {@code null} is returned.

Parameters:
key - an Object specifying the border
l - the Locale for which the border is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the Border object

getColor

public static Color getColor(Object key)
Returns a color from the defaults. If the value for {@code key} is not a {@code Color}, {@code null} is returned.

Parameters:
key - an Object specifying the color
Returns:
the Color object

getColor

public static Color getColor(Object key,
                             Locale l)
Returns a color from the defaults that is appropriate for the given locale. If the value for {@code key} is not a {@code Color}, {@code null} is returned.

Parameters:
key - an Object specifying the color
l - the Locale for which the color is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the Color object

getCrossPlatformLookAndFeelClassName

public static String getCrossPlatformLookAndFeelClassName()
Returns the name of the LookAndFeel class that implements the default cross platform look and feel -- the Java Look and Feel (JLF). This value can be overriden by setting the swing.crossplatformlaf system property.

Returns:
a string with the JLF implementation-class

getDefaults

public static UIDefaults getDefaults()
Returns the defaults. The returned defaults resolve using the logic specified in the class documentation.

Returns:
a UIDefaults object containing the default values

getDimension

public static Dimension getDimension(Object key)
Returns a dimension from the defaults. If the value for {@code key} is not a {@code Dimension}, {@code null} is returned.

Parameters:
key - an Object specifying the dimension object
Returns:
the Dimension object

getDimension

public static Dimension getDimension(Object key,
                                     Locale l)
Returns a dimension from the defaults that is appropriate for the given locale. If the value for {@code key} is not a {@code Dimension}, {@code null} is returned.

Parameters:
key - an Object specifying the dimension object
l - the Locale for which the object is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the Dimension object

getFont

public static Font getFont(Object key)
Returns a font from the defaults. If the value for {@code key} is not a {@code Font}, {@code null} is returned.

Parameters:
key - an Object specifying the font
Returns:
the Font object

getFont

public static Font getFont(Object key,
                           Locale l)
Returns a font from the defaults that is appropriate for the given locale. If the value for {@code key} is not a {@code Font}, {@code null} is returned.

Parameters:
key - an Object specifying the font
l - the Locale for which the font is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the Font object

getIcon

public static Icon getIcon(Object key)
Returns an Icon from the defaults. If the value for {@code key} is not an {@code Icon}, {@code null} is returned.

Parameters:
key - an Object specifying the icon
Returns:
the Icon object

getIcon

public static Icon getIcon(Object key,
                           Locale l)
Returns an Icon from the defaults that is appropriate for the given locale. If the value for {@code key} is not an {@code Icon}, {@code null} is returned.

Parameters:
key - an Object specifying the icon
l - the Locale for which the icon is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the Icon object

getInsets

public static Insets getInsets(Object key)
Returns an Insets object from the defaults. If the value for {@code key} is not an {@code Insets}, {@code null} is returned.

Parameters:
key - an Object specifying the Insets object
Returns:
the Insets object

getInsets

public static Insets getInsets(Object key,
                               Locale l)
Returns an Insets object from the defaults that is appropriate for the given locale. If the value for {@code key} is not an {@code Insets}, {@code null} is returned.

Parameters:
key - an Object specifying the Insets object
l - the Locale for which the object is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the Insets object

getInstalledLookAndFeels

public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()
Returns an array of {@code LookAndFeelInfo}s representing the {@code LookAndFeel} implementations currently available. The LookAndFeelInfo objects can be used by an application to construct a menu of look and feel options for the user, or to determine which look and feel to set at startup time. To avoid the penalty of creating numerous {@code LookAndFeel} objects, {@code LookAndFeelInfo} maintains the class name of the {@code LookAndFeel} class, not the actual {@code LookAndFeel} instance.

The following example illustrates setting the current look and feel from an instance of {@code LookAndFeelInfo}:

   UIManager.setLookAndFeel(info.getClassName());
 

Returns:
an array of LookAndFeelInfo objects

getInt

public static int getInt(Object key)
Returns an integer from the defaults. If the value for {@code key} is not an {@code Integer}, or does not exist, {@code 0} is returned.

Parameters:
key - an Object specifying the int
Returns:
the int

getInt

public static int getInt(Object key,
                         Locale l)
Returns an integer from the defaults that is appropriate for the given locale. If the value for {@code key} is not an {@code Integer}, or does not exist, {@code 0} is returned.

Parameters:
key - an Object specifying the int
l - the Locale for which the int is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the int

getLookAndFeel

public static LookAndFeel getLookAndFeel()
Returns the current look and feel or null.

Returns:
current look and feel, or null

getLookAndFeelDefaults

public static UIDefaults getLookAndFeelDefaults()
Returns the {@code UIDefaults} from the current look and feel, that were obtained at the time the look and feel was installed.

In general, developers should use the {@code UIDefaults} returned from {@code getDefaults()}. As the current look and feel may expect certain values to exist, altering the {@code UIDefaults} returned from this method could have unexpected results.

Returns:
UIDefaults from the current look and feel

getPropertyChangeListeners

public static PropertyChangeListener[] getPropertyChangeListeners()
Returns an array of all the PropertyChangeListeners added to this UIManager with addPropertyChangeListener().

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

getString

public static String getString(Object key)
Returns a string from the defaults. If the value for {@code key} is not a {@code String}, {@code null} is returned.

Parameters:
key - an Object specifying the string
Returns:
the String

getString

public static String getString(Object key,
                               Locale l)
Returns a string from the defaults that is appropriate for the given locale. If the value for {@code key} is not a {@code String}, {@code null} is returned.

Parameters:
key - an Object specifying the string
l - the Locale for which the string is desired; refer to {@code UIDefaults} for details on how a {@code null} {@code Locale} is handled
Returns:
the String

getSystemLookAndFeelClassName

public static String getSystemLookAndFeelClassName()
Returns the name of the LookAndFeel class that implements the native system look and feel if there is one, otherwise the name of the default cross platform LookAndFeel class. This value can be overriden by setting the swing.systemlaf system property.

Returns:
the String of the LookAndFeel class

getUI

public static ComponentUI getUI(JComponent target)
Returns the appropriate {@code ComponentUI} implementation for {@code target}. Typically, this is a cover for {@code getDefaults().getUI(target)}. However, if an auxiliary look and feel has been installed, this first invokes {@code getUI(target)} on the multiplexing look and feel's defaults, and returns that value if it is {@code non-null}.

Parameters:
target - the JComponent to return the {@code ComponentUI} for
Returns:
the ComponentUI object for {@code target}

installLookAndFeel

public static void installLookAndFeel(String name,
                                      String className)
Adds the specified look and feel to the set of available look and feels. While this method does not check the arguments in any way, it is strongly recommended that {@code non-null} values be supplied.

Parameters:
name - descriptive name of the look and feel
className - name of the class that implements the look and feel

installLookAndFeel

public static void installLookAndFeel(UIManager.LookAndFeelInfo info)
Adds the specified look and feel to the set of available look and feels. While this method allows a {@code null} {@code info}, it is strongly recommended that a {@code non-null} value be used.

Parameters:
info - a LookAndFeelInfo object that names the look and feel and identifies the class that implements it

put

public static Object put(Object key,
                         Object value)
Stores an object in the developer defaults. This is a cover method for {@code getDefaults().put(key, value)}. This only effects the developer defaults, not the system or look and feel defaults.

Parameters:
key - an Object specifying the retrieval key
value - the Object to store; refer to {@code UIDefaults} for details on how {@code null} is handled
Returns:
the Object returned by {@link UIDefaults#put}

removeAuxiliaryLookAndFeel

public static boolean removeAuxiliaryLookAndFeel(LookAndFeel laf)
Removes a LookAndFeel from the list of auxiliary look and feels. The auxiliary look and feels tell the multiplexing look and feel what other LookAndFeel classes for a component instance are to be used in addition to the default LookAndFeel class when creating a multiplexing UI. The change will only take effect when a new UI class is created or when the default look and feel is changed on a component instance.

Note these are not the same as the installed look and feels.

Parameters:
laf
Returns:
true if the LookAndFeel was removed from the list

removePropertyChangeListener

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

Parameters:
listener - the PropertyChangeListener to be removed

setInstalledLookAndFeels

public static void setInstalledLookAndFeels(UIManager.LookAndFeelInfo[] infos)
                                     throws SecurityException
Sets the set of available look and feels. While this method does not check to ensure all of the {@code LookAndFeelInfos} are {@code non-null}, it is strongly recommended that only {@code non-null} values are supplied in the {@code infos} array.

Parameters:
infos - set of LookAndFeelInfo objects specifying the available look and feels
Throws:
SecurityException

setLookAndFeel

public static void setLookAndFeel(LookAndFeel newLookAndFeel)
                           throws UnsupportedLookAndFeelException
Sets the current look and feel to {@code newLookAndFeel}. If the current look and feel is {@code non-null} {@code uninitialize} is invoked on it. If {@code newLookAndFeel} is {@code non-null}, {@code initialize} is invoked on it followed by {@code getDefaults}. The defaults returned from {@code newLookAndFeel.getDefaults()} replace those of the defaults from the previous look and feel. If the {@code newLookAndFeel} is {@code null}, the look and feel defaults are set to {@code null}.

A value of {@code null} can be used to set the look and feel to {@code null}. As the {@code LookAndFeel} is required for most of Swing to function, setting the {@code LookAndFeel} to {@code null} is strongly discouraged.

This is a JavaBeans bound property.

Parameters:
newLookAndFeel - {@code LookAndFeel} to install
Throws:
UnsupportedLookAndFeelException - if {@code newLookAndFeel} is {@code non-null} and {@code newLookAndFeel.isSupportedLookAndFeel()} returns {@code false}

setLookAndFeel

public static void setLookAndFeel(String className)
                           throws ClassNotFoundException,
                                  InstantiationException,
                                  IllegalAccessException,
                                  UnsupportedLookAndFeelException
Loads the {@code LookAndFeel} specified by the given class name, using the current thread's context class loader, and passes it to {@code setLookAndFeel(LookAndFeel)}.

Parameters:
className - a string specifying the name of the class that implements the look and feel
Throws:
ClassNotFoundException - if the LookAndFeel class could not be found
InstantiationException - if a new instance of the class couldn't be created
IllegalAccessException - if the class or initializer isn't accessible
UnsupportedLookAndFeelException - if lnf.isSupportedLookAndFeel() is false


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.