All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.swing.multi.MultiSplitPaneUI
java.lang.Object
|
+----java.awt.swing.plaf.ComponentUI
|
+----java.awt.swing.plaf.SplitPaneUI
|
+----java.awt.swing.multi.MultiSplitPaneUI
- public class MultiSplitPaneUI
- extends SplitPaneUI
- implements Serializable
MultiSplitPaneUI implementation
uis- The Vector containing the real UI's.
MultiSplitPaneUI()
-
contains(JComponent, int, int)
-
createUI(JComponent)
-
finishedPaintingChildren(JSplitPane, Graphics)
- Messaged after the JSplitPane the receiver is providing the look
and feel for paints its children.
getDividerLocation()
- Returns the location of the divider.
getMaximumDividerLocation()
- Returns the maximum possible location of the divider.
getMaximumSize(JComponent)
-
getMinimumDividerLocation()
- Returns the minimum possible location of the divider.
getMinimumSize(JComponent)
-
getPreferredSize(JComponent)
-
getUIs()
- Return the list of UI's associated with this multiplexing UI.
installUI(JComponent)
-
paint(Graphics, JComponent)
-
resetToPreferredSizes()
- Messaged to relayout the JSplitPane based on the preferred size
of the children components.
setDividerLocation(int)
- Sets the location of the divider to location.
uninstallUI(JComponent)
-
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.
MultiSplitPaneUI
public MultiSplitPaneUI()
createUI
public static ComponentUI createUI(JComponent c)
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.
installUI
public void installUI(JComponent c)
- Overrides:
- installUI in class ComponentUI
uninstallUI
public void uninstallUI(JComponent c)
- Overrides:
- uninstallUI in class ComponentUI
paint
public void paint(Graphics g,
JComponent c)
- Overrides:
- paint in class ComponentUI
getPreferredSize
public Dimension getPreferredSize(JComponent c)
- Overrides:
- getPreferredSize in class ComponentUI
getMinimumSize
public Dimension getMinimumSize(JComponent c)
- Overrides:
- getMinimumSize in class ComponentUI
getMaximumSize
public Dimension getMaximumSize(JComponent c)
- Overrides:
- getMaximumSize in class ComponentUI
contains
public boolean contains(JComponent c,
int x,
int y)
- Overrides:
- contains in class ComponentUI
resetToPreferredSizes
public void resetToPreferredSizes()
- Messaged to relayout the JSplitPane based on the preferred size
of the children components.
- Overrides:
- resetToPreferredSizes in class SplitPaneUI
setDividerLocation
public void setDividerLocation(int l)
- Sets the location of the divider to location.
- Overrides:
- setDividerLocation in class SplitPaneUI
getDividerLocation
public int getDividerLocation()
- Returns the location of the divider.
- Overrides:
- getDividerLocation in class SplitPaneUI
getMinimumDividerLocation
public int getMinimumDividerLocation()
- Returns the minimum possible location of the divider.
- Overrides:
- getMinimumDividerLocation in class SplitPaneUI
getMaximumDividerLocation
public int getMaximumDividerLocation()
- Returns the maximum possible location of the divider.
- Overrides:
- getMaximumDividerLocation in class SplitPaneUI
finishedPaintingChildren
public void finishedPaintingChildren(JSplitPane splitPane,
Graphics g)
- Messaged after the JSplitPane the receiver is providing the look
and feel for paints its children.
- Overrides:
- finishedPaintingChildren in class SplitPaneUI
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature