public class

BasicInternalFrameUI.InternalFrameLayout

extends Object
implements LayoutManager
java.lang.Object
   ↳ javax.swing.plaf.basic.BasicInternalFrameUI.InternalFrameLayout

Summary

Public Constructors
BasicInternalFrameUI.InternalFrameLayout()
Public Methods
void addLayoutComponent(String name, 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

Public Constructors

public BasicInternalFrameUI.InternalFrameLayout ()

Public Methods

public void addLayoutComponent (String name, 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
name 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