All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.awt.swing.plaf.SplitPaneUI

java.lang.Object
    |
    +----java.awt.swing.plaf.ComponentUI
            |
            +----java.awt.swing.plaf.SplitPaneUI

public abstract class SplitPaneUI
extends ComponentUI
Pluggable look and feel interface for JSplitPane.


Constructor Index

 o SplitPaneUI()

Method Index

 o finishedPaintingChildren(JSplitPane, Graphics)
Messaged after the JSplitPane the receiver is providing the look and feel for paints its children.
 o getDividerLocation()
Returns the location of the divider.
 o getMaximumDividerLocation()
Returns the maximum possible location of the divider.
 o getMinimumDividerLocation()
Returns the minimum possible location of the divider.
 o resetToPreferredSizes()
Messaged to relayout the JSplitPane based on the preferred size of the children components.
 o setDividerLocation(int)
Sets the location of the divider to location.

Constructors

 o SplitPaneUI
public SplitPaneUI()

Methods

 o resetToPreferredSizes
public abstract void resetToPreferredSizes()
Messaged to relayout the JSplitPane based on the preferred size of the children components.

 o setDividerLocation
public abstract void setDividerLocation(int location)
Sets the location of the divider to location.

 o getDividerLocation
public abstract int getDividerLocation()
Returns the location of the divider.

 o getMinimumDividerLocation
public abstract int getMinimumDividerLocation()
Returns the minimum possible location of the divider.

 o getMaximumDividerLocation
public abstract int getMaximumDividerLocation()
Returns the maximum possible location of the divider.

 o finishedPaintingChildren
public abstract void finishedPaintingChildren(JSplitPane jc,
                                              Graphics g)
Messaged after the JSplitPane the receiver is providing the look and feel for paints its children.


All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature