| Package | Description |
|---|---|
| javax.swing.plaf |
Provides one interface and many abstract classes that Swing uses to provide its pluggable look-and-feel capabilities.
|
| javax.swing.plaf.basic |
Provides user interface objects built according to the Basic look and feel.
|
| javax.swing.plaf.multi |
Provides user interface objects that combine two or more look and feels.
|
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
OptionPaneUI.containsCustomComponents(JOptionPane
Returns true if the user has supplied instances of Component for either the options or message.
|
abstract void |
OptionPaneUI.selectInitialValue(JOptionPane
Requests the component representing the default value to have focus.
|
| Modifier and Type | Field and Description |
|---|---|
protected JOptionPane |
BasicOptionPaneUI.optionPane
JOptionPane that the receiver is providing the look and feel for.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
BasicOptionPaneUI.containsCustomComponents(JOptionPane
Returns true if in the last call to validateComponent the message or buttons contained a subclass of Component.
|
void |
BasicOptionPaneUI.selectInitialValue(JOptionPane
If inputComponent is non-null, the focus is requested on that, otherwise request focus on the default value
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MultiOptionPaneUI.containsCustomComponents(JOptionPane
Invokes the
containsCustomComponents method on each UI handled by this object.
|
void |
MultiOptionPaneUI.selectInitialValue(JOptionPane
Invokes the
selectInitialValue method on each UI handled by this object.
|