| |
|
| java.lang.Object java.awt.FlowLayout org.netbeans.lib.profiler.ui.components.EqualFlowLayout
EqualFlowLayout | public class EqualFlowLayout extends FlowLayout (Code) | | EqualFlowLayout is a layout manager that works the same way as FlowLayout.
The only difference is that it sizes the components so that they all have the same width
(a width of widest component).
author: Ian Formanek version: 1.00, Nov 12, 1998 |
Constructor Summary | |
public | EqualFlowLayout() Constructs a new Flow Layout with a centered alignment and a
default 5-unit horizontal and vertical gap. | public | EqualFlowLayout(int align) Constructs a new Flow Layout with the specified alignment and a
default 5-unit horizontal and vertical gap. | public | EqualFlowLayout(int align, int hgap, int vgap) Creates a new flow layout manager with the indicated alignment
and the indicated horizontal and vertical gaps. |
serialVersionUID | final static long serialVersionUID(Code) | | A JDK 1.1 serial version UID
|
EqualFlowLayout | public EqualFlowLayout()(Code) | | Constructs a new Flow Layout with a centered alignment and a
default 5-unit horizontal and vertical gap.
since: JDK1.0 |
EqualFlowLayout | public EqualFlowLayout(int align)(Code) | | Constructs a new Flow Layout with the specified alignment and a
default 5-unit horizontal and vertical gap.
The value of the alignment argument must be one of
FlowLayout.LEFT , FlowLayout.RIGHT ,
or FlowLayout.CENTER .
Parameters: align - the alignment value since: JDK1.0 |
EqualFlowLayout | public EqualFlowLayout(int align, int hgap, int vgap)(Code) | | Creates a new flow layout manager with the indicated alignment
and the indicated horizontal and vertical gaps.
The value of the alignment argument must be one of
FlowLayout.LEFT , FlowLayout.RIGHT ,
or FlowLayout.CENTER .
Parameters: align - the alignment value. Parameters: hgap - the horizontal gap between components. Parameters: vgap - the vertical gap between components. since: JDK1.0 |
layoutContainer | public void layoutContainer(Container target)(Code) | | Lays out the container. This method lets each component take
its preferred size by reshaping the components in the
target container in order to satisfy the constraints of
this FlowLayout object.
Parameters: target - the specified component being laid out. See Also: java.awt.Container See Also: java.awt.Container.doLayout since: JDK1.0 |
|
|
|