Java javax.swing UIManager fields, constructors, methods, implement or subclass

Example usage for Java javax.swing UIManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing UIManager.

The text is from its open source code.

Constructor

Method

voidaddPropertyChangeListener(PropertyChangeListener listener)
Adds a PropertyChangeListener to the listener list.
Objectget(Object key)
Returns an object from the defaults.
Objectget(Object key, Locale l)
Returns an object from the defaults that is appropriate for the given locale.
LookAndFeel[]getAuxiliaryLookAndFeels()
Returns the list of auxiliary look and feels (can be null).
booleangetBoolean(Object key)
Returns a boolean from the defaults which is associated with the key value.
BordergetBorder(Object key)
Returns a border from the defaults.
ColorgetColor(Object key)
Returns a color from the defaults.
ColorgetColor(Object key, Locale l)
Returns a color from the defaults that is appropriate for the given locale.
StringgetCrossPlatformLookAndFeelClassName()
Returns the name of the LookAndFeel class that implements the default cross platform look and feel -- the Java Look and Feel (JLF).
UIDefaultsgetDefaults()
Returns the defaults.
FontgetFont(Object key)
Returns a font from the defaults.
IcongetIcon(Object key)
Returns an Icon from the defaults.
LookAndFeelInfo[]getInstalledLookAndFeels()
Returns an array of LookAndFeelInfo s representing the LookAndFeel implementations currently available.
intgetInt(Object key)
Returns an integer from the defaults.
LookAndFeelgetLookAndFeel()
Returns the current look and feel or null.
UIDefaultsgetLookAndFeelDefaults()
Returns the UIDefaults from the current look and feel, that were obtained at the time the look and feel was installed.
StringgetString(Object key)
Returns a string from the defaults.
StringgetSystemLookAndFeelClassName()
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.
ComponentUIgetUI(JComponent target)
Returns the appropriate ComponentUI implementation for target .
voidinstallLookAndFeel(String name, String className)
Adds the specified look and feel to the set of available look and feels.
Objectput(Object key, Object value)
Stores an object in the developer defaults.
voidsetLookAndFeel(LookAndFeel newLookAndFeel)
Sets the current look and feel to newLookAndFeel .
voidsetLookAndFeel(String className)
Loads the LookAndFeel specified by the given class name, using the current thread's context class loader, and passes it to setLookAndFeel(LookAndFeel) .