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 SummaryModifier 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
- 
Constructor Details- 
SplitPaneUIpublic SplitPaneUI()
 
- 
- 
Method Details- 
resetToPreferredSizesMessaged to relayout the JSplitPane based on the preferred size of the children components.- Parameters:
- jc- a- JSplitPane
 
- 
setDividerLocationSets the location of the divider to location.- Parameters:
- jc- a- JSplitPane
- location- an integer specifying the location of the divider
 
- 
getDividerLocationReturns the location of the divider.- Parameters:
- jc- a- JSplitPane
- Returns:
- an integer specifying the location of the divider
 
- 
getMinimumDividerLocationReturns the minimum possible location of the divider.- Parameters:
- jc- a- JSplitPane
- Returns:
- and integer specifying the minimum location of the divider
 
- 
getMaximumDividerLocationReturns the maximum possible location of the divider.- Parameters:
- jc- a- JSplitPane
- Returns:
- an integer specifying the maximum location of the divider
 
- 
finishedPaintingChildrenMessaged after the JSplitPane the receiver is providing the look and feel for paints its children.- Parameters:
- jc- a- JSplitPane
- g- the- Graphicscontext
 
 
-