public abstract class

SplitPaneUI

extends ComponentUI
java.lang.Object
   ↳ javax.swing.plaf.ComponentUI
     ↳ javax.swing.plaf.SplitPaneUI
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Pluggable look and feel interface for JSplitPane.

Summary

Public Constructors
SplitPaneUI()
Public Methods
abstract void finishedPaintingChildren(JSplitPane jc, Graphics g)
Messaged after the JSplitPane the receiver is providing the look and feel for paints its children.
abstract int getDividerLocation(JSplitPane jc)
Returns the location of the divider.
abstract int getMaximumDividerLocation(JSplitPane jc)
Returns the maximum possible location of the divider.
abstract int getMinimumDividerLocation(JSplitPane jc)
Returns the minimum possible location of the divider.
abstract void resetToPreferredSizes(JSplitPane jc)
Messaged to relayout the JSplitPane based on the preferred size of the children components.
abstract void setDividerLocation(JSplitPane jc, int location)
Sets the location of the divider to location.
[Expand]
Inherited Methods
From class javax.swing.plaf.ComponentUI
From class java.lang.Object

Public Constructors

public SplitPaneUI ()

Public Methods

public abstract void finishedPaintingChildren (JSplitPane jc, Graphics g)

Messaged after the JSplitPane the receiver is providing the look and feel for paints its children.

public abstract int getDividerLocation (JSplitPane jc)

Returns the location of the divider.

public abstract int getMaximumDividerLocation (JSplitPane jc)

Returns the maximum possible location of the divider.

public abstract int getMinimumDividerLocation (JSplitPane jc)

Returns the minimum possible location of the divider.

public abstract void resetToPreferredSizes (JSplitPane jc)

Messaged to relayout the JSplitPane based on the preferred size of the children components.

public abstract void setDividerLocation (JSplitPane jc, int location)

Sets the location of the divider to location.