java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.SplitPaneUI
javax.swing.plaf.multi.MultiSplitPaneUI
A multiplexing UI used to combine
SplitPaneUI
s.
This file was automatically generated by AutoMulti.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Vector<ComponentUI>
The vector containing the real UIs. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
contains(JComponent a, int b, int c)
Invokes thecontains
method on each UI handled by this object.static ComponentUI
createUI(JComponent a)
Returns a multiplexing UI instance if any of the auxiliaryLookAndFeel
s supports this UI.void
Invokes thefinishedPaintingChildren
method on each UI handled by this object.getAccessibleChild(JComponent a, int b)
Invokes thegetAccessibleChild
method on each UI handled by this object.int
Invokes thegetAccessibleChildrenCount
method on each UI handled by this object.int
Invokes thegetDividerLocation
method on each UI handled by this object.int
Invokes thegetMaximumDividerLocation
method on each UI handled by this object.Invokes thegetMaximumSize
method on each UI handled by this object.int
Invokes thegetMinimumDividerLocation
method on each UI handled by this object.Invokes thegetMinimumSize
method on each UI handled by this object.Invokes thegetPreferredSize
method on each UI handled by this object.getUIs()
Returns the list of UIs associated with this multiplexing UI.void
installUI(JComponent a)
Invokes theinstallUI
method on each UI handled by this object.void
paint(Graphics a, JComponent b)
Invokes thepaint
method on each UI handled by this object.void
Invokes theresetToPreferredSizes
method on each UI handled by this object.void
setDividerLocation(JSplitPane a, int b)
Invokes thesetDividerLocation
method on each UI handled by this object.void
Invokes theuninstallUI
method on each UI handled by this object.void
update(Graphics a, JComponent b)
Invokes theupdate
method on each UI handled by this object.Methods declared in class javax.swing.plaf.ComponentUI
getBaseline, getBaselineResizeBehavior
-
Field Details
-
uis
The vector containing the real UIs. This is populated in the call tocreateUI
, and can be obtained by calling thegetUIs
method. The first element is guaranteed to be the real UI obtained from the default look and feel.
-
-
Constructor Details
-
MultiSplitPaneUI
public MultiSplitPaneUI()Constructs aMultiSplitPaneUI
.
-
-
Method Details
-
getUIs
Returns the list of UIs associated with this multiplexing UI. This allows processing of the UIs by an application aware of multiplexing UIs on components.- Returns:
- an array of the UI delegates
-
resetToPreferredSizes
Invokes theresetToPreferredSizes
method on each UI handled by this object.- Specified by:
resetToPreferredSizes
in class
-