Java com.jgoodies.forms.layout ColumnSpec fields, constructors, methods, implement or subclass

Example usage for Java com.jgoodies.forms.layout ColumnSpec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.jgoodies.forms.layout ColumnSpec.

The text is from its open source code.

Field

DefaultAlignmentLEFT
By default put components in the left.
DefaultAlignmentCENTER
By default put the components in the center.
DefaultAlignmentRIGHT
By default put components in the right.
DefaultAlignmentFILL
By default fill the component into the column.
DefaultAlignmentDEFAULT
Unless overridden the default alignment for a column is FILL.

Constructor

ColumnSpec(DefaultAlignment defaultAlignment, Size size, double resizeWeight)
Constructs a ColumnSpec for the given default alignment, size and resize weight.

The resize weight must be a non-negative double; you can use NO_GROW as a convenience value for no resize.

ColumnSpec(Size size)
Constructs a ColumnSpec for the given size using the default alignment, and no resizing.
ColumnSpec(String encodedDescription)
Constructs a ColumnSpec from the specified encoded description.

Method

ColumnSpecdecode(String encodedColumnSpec)
Parses the encoded column specification and returns a ColumnSpec object that represents the string.
ColumnSpec[]decodeSpecs(String encodedColumnSpecs)
Parses and splits encoded column specifications using the default LayoutMap and returns an array of ColumnSpec objects.