public class MultiLookAndFeel extends javax.swing.LookAndFeel
| Constructor and Description |
|---|
MultiLookAndFeel()
Creates a new instance of the look and feel.
|
| Modifier and Type | Method and Description |
|---|---|
static javax.swing.plaf.ComponentUI |
createUIs(javax.swing.plaf.ComponentUI mui,
java.util.Vector uis,
javax.swing.JComponent target)
Creates the UI delegates for the
target component and
returns a multiplexing UI delegate (mui) if there are
multiple delegates. |
javax.swing.UIDefaults |
getDefaults()
Creates and returns the UI defaults for this look and feel.
|
java.lang.String |
getDescription()
Returns a description of the look and feel.
|
java.lang.String |
getID()
Returns an identifier for the look and feel.
|
java.lang.String |
getName()
Returns the name for the look and feel.
|
boolean |
isNativeLookAndFeel()
Returns
false to indicate that this look and feel is not
native to any platform. |
boolean |
isSupportedLookAndFeel()
Returns
true always, since this look and feel is supported on
all platforms. |
protected static javax.swing.plaf.ComponentUI[] |
uisToArray(java.util.Vector uis)
Returns an array containing the same
ComponentUI instances as
uis. |
getDesktopPropertyValue, getSupportsWindowDecorations, initialize, installBorder, installColors, installColorsAndFont, installProperty, loadKeyBindings, makeComponentInputMap, makeIcon, makeInputMap, makeKeyBindings, provideErrorFeedback, toString, uninitialize, uninstallBorderpublic MultiLookAndFeel()
public java.lang.String getName()
getName in class javax.swing.LookAndFeelpublic java.lang.String getID()
getID in class javax.swing.LookAndFeelpublic java.lang.String getDescription()
getDescription in class javax.swing.LookAndFeelpublic boolean isNativeLookAndFeel()
false to indicate that this look and feel is not
native to any platform.isNativeLookAndFeel in class javax.swing.LookAndFeelfalse.public boolean isSupportedLookAndFeel()
true always, since this look and feel is supported on
all platforms.isSupportedLookAndFeel in class javax.swing.LookAndFeeltrue.public javax.swing.UIDefaults getDefaults()
getDefaults in class javax.swing.LookAndFeelpublic static javax.swing.plaf.ComponentUI createUIs(javax.swing.plaf.ComponentUI mui, java.util.Vector uis, javax.swing.JComponent target)
target component and
returns a multiplexing UI delegate (mui) if there are
multiple delegates.mui - a multiplexing UI delegate appropriate for the component.uis - a vector into which the UI delegates will be added.target - the target component.protected static javax.swing.plaf.ComponentUI[] uisToArray(java.util.Vector uis)
ComponentUI instances as
uis. If uis is null, a zero-length
array is returned.uis - a list of ComponentUI references (null
permitted).ComponentUI instances as
uis, or null if uis is
empty.