API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt. LayoutManager View Source
Author(s)
Sami Shaio
Arthur van Hoff
Since
Version
1.27, 11/17/05
Serial
Hierarchy
 LayoutManager
Subinterfaces
Description
public interface LayoutManager
  Defines the interface for classes that know how to lay out Containers.
Methods
Hide/Show inherited methods
public void addLayoutComponent (String name, Component comp)
  If the layout manager uses a per-component string, adds the component comp to the layout, associating it with the string specified by name.
public void layoutContainer (Container parent)
  Lays out the specified container.
public Dimension minimumLayoutSize (Container parent)
  Calculates the minimum size dimensions for the specified container, given the components it contains.
public Dimension preferredLayoutSize (Container parent)
  Calculates the preferred size dimensions for the specified container, given the components it contains.
public void removeLayoutComponent (Component comp)
  Removes the specified component from the layout.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar