Spec-Zone .ru
спецификации, руководства, описания, API
JavaTM 2 Platform
Standard Edition

javax.swing.plaf.multi
Class MultiSplitPaneUI

java.lang.Object
  |
  +--javax.swing.plaf.ComponentUI
        |
        +--javax.swing.plaf.SplitPaneUI
              |
              +--javax.swing.plaf.multi.MultiSplitPaneUI

public class MultiSplitPaneUI
extends SplitPaneUI

MultiSplitPaneUI implementation

This file was automatically generated by AutoMulti.


Field Summary
protected  Vector uis
          The Vector containing the real UI's.
 
Constructor Summary
MultiSplitPaneUI()
           
 
Method Summary
 boolean contains(JComponent a, int b, int c)
          Call contains on each UI handled by this MultiUI.
static ComponentUI createUI(JComponent a)
          Return a multiplexing UI instance if any of the auxiliary LookAndFeels support this UI.
 void finishedPaintingChildren(JSplitPane a, Graphics b)
          Call finishedPaintingChildren on each UI handled by this MultiUI.
 Accessible getAccessibleChild(JComponent a, int b)
          Call getAccessibleChild on each UI handled by this MultiUI.
 int getAccessibleChildrenCount(JComponent a)
          Call getAccessibleChildrenCount on each UI handled by this MultiUI.
 int getDividerLocation(JSplitPane a)
          Call getDividerLocation on each UI handled by this MultiUI.
 int getMaximumDividerLocation(JSplitPane a)
          Call getMaximumDividerLocation on each UI handled by this MultiUI.
 Dimension getMaximumSize(JComponent a)
          Call getMaximumSize on each UI handled by this MultiUI.
 int getMinimumDividerLocation(JSplitPane a)
          Call getMinimumDividerLocation on each UI handled by this MultiUI.
 Dimension getMinimumSize(JComponent a)
          Call getMinimumSize on each UI handled by this MultiUI.
 Dimension getPreferredSize(JComponent a)
          Call getPreferredSize on each UI handled by this MultiUI.
 ComponentUI[] getUIs()
          Return the list of UI's associated with this multiplexing UI.
 void installUI(JComponent a)
          Call installUI on each UI handled by this MultiUI.
 void paint(Graphics a, JComponent b)
          Call paint on each UI handled by this MultiUI.
 void resetToPreferredSizes(JSplitPane a)
          Call resetToPreferredSizes on each UI handled by this MultiUI.
 void setDividerLocation(JSplitPane a, int b)
          Call setDividerLocation on each UI handled by this MultiUI.
 void uninstallUI(JComponent a)
          Call uninstallUI on each UI handled by this MultiUI.
 void update(Graphics a, JComponent b)
          Call update on each UI handled by this MultiUI.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

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.
Constructor Detail

MultiSplitPaneUI

public MultiSplitPaneUI()
Method Detail

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.

resetToPreferredSizes

public void resetToPreferredSizes(JSplitPane a)
Call resetToPreferredSizes on each UI handled by this MultiUI.
Overrides:
resetToPreferredSizes in class SplitPaneUI

setDividerLocation

public void setDividerLocation(JSplitPane a,
                               int b)
Call setDividerLocation on each UI handled by this MultiUI.
Overrides:
setDividerLocation in class SplitPaneUI

getDividerLocation

public int getDividerLocation(JSplitPane a)
Call getDividerLocation on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getDividerLocation in class SplitPaneUI

getMinimumDividerLocation

public int getMinimumDividerLocation(JSplitPane a)
Call getMinimumDividerLocation on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getMinimumDividerLocation in class SplitPaneUI

getMaximumDividerLocation

public int getMaximumDividerLocation(JSplitPane a)
Call getMaximumDividerLocation on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getMaximumDividerLocation in class SplitPaneUI

finishedPaintingChildren

public void finishedPaintingChildren(JSplitPane a,
                                     Graphics b)
Call finishedPaintingChildren on each UI handled by this MultiUI.
Overrides:
finishedPaintingChildren in class SplitPaneUI

installUI

public void installUI(JComponent a)
Call installUI on each UI handled by this MultiUI.
Overrides:
installUI in class ComponentUI

uninstallUI

public void uninstallUI(JComponent a)
Call uninstallUI on each UI handled by this MultiUI.
Overrides:
uninstallUI in class ComponentUI

paint

public void paint(Graphics a,
                  JComponent b)
Call paint on each UI handled by this MultiUI.
Overrides:
paint in class ComponentUI

update

public void update(Graphics a,
                   JComponent b)
Call update on each UI handled by this MultiUI.
Overrides:
update in class ComponentUI

getPreferredSize

public Dimension getPreferredSize(JComponent a)
Call getPreferredSize on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getPreferredSize in class ComponentUI

getMinimumSize

public Dimension getMinimumSize(JComponent a)
Call getMinimumSize on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getMinimumSize in class ComponentUI

getMaximumSize

public Dimension getMaximumSize(JComponent a)
Call getMaximumSize on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getMaximumSize in class ComponentUI

contains

public boolean contains(JComponent a,
                        int b,
                        int c)
Call contains on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
contains in class ComponentUI

createUI

public static ComponentUI createUI(JComponent a)
Return a multiplexing UI instance if any of the auxiliary LookAndFeels support this UI. Otherwise, just return a UI obtained using the normal methods.

getAccessibleChildrenCount

public int getAccessibleChildrenCount(JComponent a)
Call getAccessibleChildrenCount on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getAccessibleChildrenCount in class ComponentUI
Tags copied from class: ComponentUI
Returns:
the number of accessible children in the object.
See Also:
ComponentUI.getAccessibleChild(javax.swing.JComponent, int)

getAccessibleChild

public Accessible getAccessibleChild(JComponent a,
                                     int b)
Call getAccessibleChild on each UI handled by this MultiUI. Return only the value obtained from the first UI, which is the UI obtained from the default LookAndFeel.
Overrides:
getAccessibleChild in class ComponentUI
Tags copied from class: ComponentUI
Parameters:
i - zero-based index of child
Returns:
the nth Accessible child of the object
See Also:
ComponentUI.getAccessibleChildrenCount(javax.swing.JComponent)

JavaTM 2 Platform
Standard Edition

Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.