public class VerticalLayout
extends java.lang.Object
implements java.awt.LayoutManager, java.io.Serializable
BOTH
in which case components are stretched
horizontally. Unlike FlowLayout, components will not wrap to form another
column if there isn't enough space vertically. VerticalLayout can optionally
anchor components to the top or bottom of the display area or center them
between the top and bottom. Revision date 04 April 1999Modifier and Type | Field and Description |
---|---|
static int |
BOTH
The horizontal alignment constant that designates stretching the
component horizontally.
|
static int |
BOTTOM
The anchoring constant that designates anchoring to the bottom of the
display area.
|
static int |
CENTER
The horizontal alignment constant that designates centering.
|
static int |
LEFT
The horizontal alignment constant that designates left justification.
|
static int |
RIGHT
The horizontal alignment constant that designates right justification.
|
static int |
TOP
The anchoring constant that designates anchoring to the top of the
display area.
|
Constructor and Description |
---|
VerticalLayout()
Constructs an instance of VerticalLayout with a vertical vgap of 5
pixels, horizontal centering and anchored to the top of the display area.
|
VerticalLayout(int vgap)
Constructs a VerticalLayout instance with horizontal centering, anchored
to the top with the specified vgap.
|
VerticalLayout(int vgap,
int alignment)
Constructs a VerticalLayout instance anchored to the top with the
specified vgap and horizontal alignment.
|
VerticalLayout(int vgap,
int alignment,
int anchor)
Constructs a VerticalLayout instance with the specified vgap, horizontal
alignment and anchoring
|
Modifier and Type | Method and Description |
---|---|
void |
addLayoutComponent(java.lang.String name,
java.awt.Component comp)
Not used by this class.
|
void |
layoutContainer(java.awt.Container parent)
Lays out the container.
|
java.awt.Dimension |
minimumLayoutSize(java.awt.Container parent) |
java.awt.Dimension |
preferredLayoutSize(java.awt.Container parent) |
void |
removeLayoutComponent(java.awt.Component comp)
Not used by this class.
|
java.lang.String |
toString() |
public static final int CENTER
public static final int RIGHT
public static final int LEFT
public static final int BOTH
public static final int TOP
public static final int BOTTOM
public VerticalLayout()
public VerticalLayout(int vgap)
vgap
- an int value indicating the vertical seperation of the
componentspublic VerticalLayout(int vgap, int alignment)
vgap
- an int value indicating the vertical seperation of the
componentsalignment
- an int value which is one of RIGHT, LEFT,
CENTER, BOTH
for the horizontal alignment.public VerticalLayout(int vgap, int alignment, int anchor)
vgap
- an int value indicating the vertical seperation of the
componentsalignment
- an int value which is one of RIGHT, LEFT, CENTER,
BOTH
for the horizontal alignment.anchor
- an int value which is one of TOP, BOTTOM,
CENTER
indicating where the components are to appear if the display
area exceeds the minimum necessary.public void layoutContainer(java.awt.Container parent)
layoutContainer
in interface java.awt.LayoutManager
public java.awt.Dimension minimumLayoutSize(java.awt.Container parent)
minimumLayoutSize
in interface java.awt.LayoutManager
public java.awt.Dimension preferredLayoutSize(java.awt.Container parent)
preferredLayoutSize
in interface java.awt.LayoutManager
public void addLayoutComponent(java.lang.String name, java.awt.Component comp)
addLayoutComponent
in interface java.awt.LayoutManager
public void removeLayoutComponent(java.awt.Component comp)
removeLayoutComponent
in interface java.awt.LayoutManager
public java.lang.String toString()
toString
in class java.lang.Object
Copyright © 1998-2019 Apache Software Foundation. All Rights Reserved.