Package | Description |
---|---|
org.netbeans.api.visual.layout |
This package contains
Layout interface which defines a widget-layout. |
Modifier and Type | Method and Description |
---|---|
static LayoutFactory.SerialAlignment |
LayoutFactory.SerialAlignment.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayoutFactory.SerialAlignment[] |
LayoutFactory.SerialAlignment.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Layout |
LayoutFactory.createHorizontalFlowLayout(LayoutFactory.SerialAlignment alignment,
int gap)
Creates a horizontal flow layout with a specific style where widgets are placed horizontally one to the right from another.
|
static Layout |
LayoutFactory.createHorizontalLayout(LayoutFactory.SerialAlignment alignment,
int gap)
Deprecated.
use createHorizontalFlowLayout (alignment, gap) method instead
|
static Layout |
LayoutFactory.createVerticalFlowLayout(LayoutFactory.SerialAlignment alignment,
int gap)
Creates a vertical flow layout with a specific style where widgets are placed vertically one to the bottom from another.
|
static Layout |
LayoutFactory.createVerticalLayout(LayoutFactory.SerialAlignment alignment,
int gap)
Deprecated.
use createVerticalFlowLayout (alignment, gap) method instead
|