All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.awt.swing.multi.MultiOptionPaneUI

java.lang.Object
    |
    +----java.awt.swing.plaf.ComponentUI
            |
            +----java.awt.swing.plaf.OptionPaneUI
                    |
                    +----java.awt.swing.multi.MultiOptionPaneUI

public class MultiOptionPaneUI
extends OptionPaneUI
implements Serializable
MultiOptionPaneUI implementation


Variable Index

 o uis
The Vector containing the real UI's.

Constructor Index

 o MultiOptionPaneUI()

Method Index

 o contains(JComponent, int, int)
 o containsCustomComponents()
Returns true if the user has supplied instances of Component for either the options or message.
 o createUI(JComponent)
 o getMaximumSize(JComponent)
 o getMinimumSize(JComponent)
 o getPreferredSize(JComponent)
 o getUIs()
Return the list of UI's associated with this multiplexing UI.
 o installUI(JComponent)
 o paint(Graphics, JComponent)
 o selectInitialValue()
Requests the component representing the default value to have focus.
 o uninstallUI(JComponent)

Variables

 o uis
protected Vector uis
The Vector containing the real UI's. This is populated in the call to createUI, and can be obtained by calling getUIs. The first element is guaranteed to the real UI obtained from the default look and feel.

Constructors

 o MultiOptionPaneUI
public MultiOptionPaneUI()

Methods

 o createUI
public static ComponentUI createUI(JComponent c)
 o getUIs
public ComponentUI[] getUIs()
Return the list of UI's associated with this multiplexing UI. This allows processing of the UI's by an application aware of multiplexing UI's on components.

 o installUI
public void installUI(JComponent c)
Overrides:
installUI in class ComponentUI
 o uninstallUI
public void uninstallUI(JComponent c)
Overrides:
uninstallUI in class ComponentUI
 o paint
public void paint(Graphics g,
                  JComponent c)
Overrides:
paint in class ComponentUI
 o getPreferredSize
public Dimension getPreferredSize(JComponent c)
Overrides:
getPreferredSize in class ComponentUI
 o getMinimumSize
public Dimension getMinimumSize(JComponent c)
Overrides:
getMinimumSize in class ComponentUI
 o getMaximumSize
public Dimension getMaximumSize(JComponent c)
Overrides:
getMaximumSize in class ComponentUI
 o contains
public boolean contains(JComponent c,
                        int x,
                        int y)
Overrides:
contains in class ComponentUI
 o selectInitialValue
public void selectInitialValue()
Requests the component representing the default value to have focus.

Overrides:
selectInitialValue in class OptionPaneUI
 o containsCustomComponents
public boolean containsCustomComponents()
Returns true if the user has supplied instances of Component for either the options or message.

Overrides:
containsCustomComponents in class OptionPaneUI

All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature