protected class

BasicSplitPaneDivider.DividerLayout

extends Object
implements LayoutManager
java.lang.Object
   ↳ javax.swing.plaf.basic.BasicSplitPaneDivider.DividerLayout

Class Overview

Used to layout a BasicSplitPaneDivider. Layout for the divider involves appropriately moving the left/right buttons around.

Summary

Protected Constructors
BasicSplitPaneDivider.DividerLayout()
Public Methods
void addLayoutComponent(String string, Component c)
If the layout manager uses a per-component string, adds the component comp to the layout, associating it with the string specified by name.
void layoutContainer(Container c)
Lays out the specified container.
Dimension minimumLayoutSize(Container c)
Calculates the minimum size dimensions for the specified container, given the components it contains.
Dimension preferredLayoutSize(Container c)
Calculates the preferred size dimensions for the specified container, given the components it contains.
void removeLayoutComponent(Component c)
Removes the specified component from the layout.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.awt.LayoutManager

Protected Constructors

protected BasicSplitPaneDivider.DividerLayout ()

Public Methods

public void addLayoutComponent (String string, Component c)

If the layout manager uses a per-component string, adds the component comp to the layout, associating it with the string specified by name.

Parameters
string the string to be associated with the component
c the component to be added

public void layoutContainer (Container c)

Lays out the specified container.

Parameters
c the container to be laid out

public Dimension minimumLayoutSize (Container c)

Calculates the minimum size dimensions for the specified container, given the components it contains.

Parameters
c the component to be laid out

public Dimension preferredLayoutSize (Container c)

Calculates the preferred size dimensions for the specified container, given the components it contains.

Parameters
c the container to be laid out

public void removeLayoutComponent (Component c)

Removes the specified component from the layout.

Parameters
c the component to be removed