- 
- 
|  | Modifier and Type | Method and Description |  
|  | addLayoutComponent   | 
void addLayoutComponent(java.lang.String name,
                  Component comp)
 If the layout manager uses a per-component string,
 adds the component compto the layout,
 associating it
 with the string specified byname. 
void addLayoutComponent (java.lang.String name,
                      Component  comp)
If the layout manager uses a per-component string,
 adds the component compto the layout,
 associating it
 with the string specified byname. Parameters:name- the string to be associated with the componentcomp- the component to be added
 |  
|  | layoutContainer   | 
void layoutContainer(Container parent)
 Lays out the specified container. 
Lays out the specified container. Parameters:parent- the container to be laid out
 |  
|  | minimumLayoutSize   | 
Dimension minimumLayoutSize(Container parent)Calculates the minimum size dimensions for the specified
 container, given the components it contains. 
Calculates the minimum size dimensions for the specified
 container, given the components it contains. Parameters:parent- the component to be laid outSee Also:preferredLayoutSize(java.awt.Container)
 |  
|  | preferredLayoutSize   | 
Dimension preferredLayoutSize(Container parent)Calculates the preferred size dimensions for the specified
 container, given the components it contains. 
Calculates the preferred size dimensions for the specified
 container, given the components it contains. Parameters:parent- the container to be laid outSee Also:minimumLayoutSize(java.awt.Container)
 |  
|  | removeLayoutComponent   | 
void removeLayoutComponent(Component comp)
 Removes the specified component from the layout. 
Removes the specified component from the layout. Parameters:comp- the component to be removed
 |  
 
 
 
 
This document was created by 
Dulcet from the OpenJDK sources. 
Copyright © 1993, 2012 Oracle and/or its affiliates. All rights reserved.
