- java.lang.Object
- 
- javax.swing.plaf.ComponentUI
- 
- javax.swing.plaf.SplitPaneUI
 
 
- 
- Direct Known Subclasses:
- BasicSplitPaneUI,- MultiSplitPaneUI
 
 public abstract class SplitPaneUI extends ComponentUI Pluggable look and feel interface for JSplitPane.
- 
- 
Constructor SummaryConstructors Constructor Description SplitPaneUI()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidfinishedPaintingChildren(JSplitPane jc, Graphics g)Messaged after the JSplitPane the receiver is providing the look and feel for paints its children.abstract intgetDividerLocation(JSplitPane jc)Returns the location of the divider.abstract intgetMaximumDividerLocation(JSplitPane jc)Returns the maximum possible location of the divider.abstract intgetMinimumDividerLocation(JSplitPane jc)Returns the minimum possible location of the divider.abstract voidresetToPreferredSizes(JSplitPane jc)Messaged to relayout the JSplitPane based on the preferred size of the children components.abstract voidsetDividerLocation(JSplitPane jc, int location)Sets the location of the divider to location.- 
Methods declared in class javax.swing.plaf.ComponentUIcontains, createUI, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, installUI, paint, uninstallUI, update
 
- 
 
- 
- 
- 
Method Detail- 
resetToPreferredSizespublic abstract void resetToPreferredSizes(JSplitPane jc) Messaged to relayout the JSplitPane based on the preferred size of the children components.- Parameters:
- jc- a- JSplitPane
 
 - 
setDividerLocationpublic abstract void setDividerLocation(JSplitPane jc, int location) Sets the location of the divider to location.- Parameters:
- jc- a- JSplitPane
- location- an integer specifying the location of the divider
 
 - 
getDividerLocationpublic abstract int getDividerLocation(JSplitPane jc) Returns the location of the divider.- Parameters:
- jc- a- JSplitPane
- Returns:
- an integer specifying the location of the divider
 
 - 
getMinimumDividerLocationpublic abstract int getMinimumDividerLocation(JSplitPane jc) Returns the minimum possible location of the divider.- Parameters:
- jc- a- JSplitPane
- Returns:
- and integer specifying the minimum location of the divider
 
 - 
getMaximumDividerLocationpublic abstract int getMaximumDividerLocation(JSplitPane jc) Returns the maximum possible location of the divider.- Parameters:
- jc- a- JSplitPane
- Returns:
- an integer specifying the maximum location of the divider
 
 - 
finishedPaintingChildrenpublic abstract void finishedPaintingChildren(JSplitPane jc, Graphics g) Messaged after the JSplitPane the receiver is providing the look and feel for paints its children.- Parameters:
- jc- a- JSplitPane
- g- the- Graphicscontext
 
 
- 
 
-