- java.lang.Object
- 
- javax.swing.ViewportLayout
 
- 
- All Implemented Interfaces:
- LayoutManager,- Serializable
 
 public class ViewportLayout extends Object implements LayoutManager, Serializable The default layout manager forJViewport.ViewportLayoutdefines a policy for layout that should be useful for most applications. The viewport makes its view the same size as the viewport, however it will not make the view smaller than its minimum size. As the viewport grows the view is kept bottom justified until the entire view is visible, subsequently the view is kept top justified.Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans™ has been added to the java.beanspackage. Please seeXMLEncoder.- Since:
- 1.2
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ViewportLayout()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddLayoutComponent(String name, Component c)Adds the specified component to the layout.voidlayoutContainer(Container parent)Called by the AWT when the specified container needs to be laid out.DimensionminimumLayoutSize(Container parent)Returns the minimum dimensions needed to layout the components contained in the specified target container.DimensionpreferredLayoutSize(Container parent)Returns the preferred dimensions for this layout given the components in the specified target container.voidremoveLayoutComponent(Component c)Removes the specified component from the layout.
 
- 
- 
- 
Method Detail- 
addLayoutComponentpublic void addLayoutComponent(String name, Component c) Adds the specified component to the layout. Not used by this class.- Specified by:
- addLayoutComponentin interface- LayoutManager
- Parameters:
- name- the name of the component
- c- the component to be added
 
 - 
removeLayoutComponentpublic void removeLayoutComponent(Component c) Removes the specified component from the layout. Not used by this class.- Specified by:
- removeLayoutComponentin interface- LayoutManager
- Parameters:
- c- the component to remove
 
 - 
preferredLayoutSizepublic Dimension preferredLayoutSize(Container parent) Returns the preferred dimensions for this layout given the components in the specified target container.- Specified by:
- preferredLayoutSizein interface- LayoutManager
- Parameters:
- parent- the component which needs to be laid out
- Returns:
- a Dimensionobject containing the preferred dimensions
- See Also:
- minimumLayoutSize(java.awt.Container)
 
 - 
minimumLayoutSizepublic Dimension minimumLayoutSize(Container parent) Returns the minimum dimensions needed to layout the components contained in the specified target container.- Specified by:
- minimumLayoutSizein interface- LayoutManager
- Parameters:
- parent- the component which needs to be laid out
- Returns:
- a Dimensionobject containing the minimum dimensions
- See Also:
- preferredLayoutSize(java.awt.Container)
 
 - 
layoutContainerpublic void layoutContainer(Container parent) Called by the AWT when the specified container needs to be laid out.- Specified by:
- layoutContainerin interface- LayoutManager
- Parameters:
- parent- the container to lay out
- Throws:
- AWTError- if the target isn't the container specified to the- BoxLayoutconstructor
 
 
- 
 
-