Package | Description |
---|---|
com.jgoodies.forms.builder |
Contains optional builder classes of the Forms framework.
|
com.jgoodies.forms.debug |
Consists of optional classes that help you find,
understand and fix layout problems
|
com.jgoodies.forms.factories |
Consists of optional Forms framework factory classes that assist you
in building consistent forms quickly
|
com.jgoodies.forms.layout |
Contains the core classes of the JGoodies Forms framework:
layout manager, column and row specifications, sizes and cell constraints
|
org.mlc.swing.layout |
FormLayoutMaker layout classes.
|
Modifier and Type | Method and Description |
---|---|
FormLayout |
AbstractFormBuilder.getLayout()
Returns the instance of
FormLayout used to build this form. |
Constructor and Description |
---|
AbstractFormBuilder(java.awt.Container container,
FormLayout layout)
Deprecated.
|
AbstractFormBuilder(FormLayout layout,
java.awt.Container container)
Constructs an instance of
AbstractFormBuilder
for the given FormLayout and layout container. |
DefaultFormBuilder(FormLayout layout)
Constructs an instance of
DefaultFormBuilder for the given
layout. |
DefaultFormBuilder(FormLayout layout,
javax.swing.JPanel panel)
Constructs an instance of
DefaultFormBuilder for the given
panel and layout. |
DefaultFormBuilder(FormLayout layout,
java.util.ResourceBundle bundle)
Constructs an instance of
DefaultFormBuilder for the given
layout and resource bundle. |
DefaultFormBuilder(FormLayout layout,
java.util.ResourceBundle bundle,
javax.swing.JPanel panel)
Constructs an instance of
DefaultFormBuilder for the given
panel, layout and resource bundle. |
DefaultFormBuilder(javax.swing.JPanel panel,
FormLayout layout)
Deprecated.
|
DefaultFormBuilder(javax.swing.JPanel panel,
FormLayout layout,
java.util.ResourceBundle bundle)
Deprecated.
|
I15dPanelBuilder(FormLayout layout,
java.util.ResourceBundle bundle)
Constructs an instance of
I15dPanelBuilder for the given
layout. |
I15dPanelBuilder(FormLayout layout,
java.util.ResourceBundle bundle,
javax.swing.JPanel panel)
Constructs an instance of
I15dPanelBuilder
for the given FormLayout and layout container. |
I15dPanelBuilder(javax.swing.JPanel panel,
FormLayout layout,
java.util.ResourceBundle bundle)
Deprecated.
|
PanelBuilder(FormLayout layout)
Constructs an instance of
PanelBuilder for the given
layout. |
PanelBuilder(FormLayout layout,
javax.swing.JPanel panel)
Constructs an instance of
PanelBuilder for the given
FormLayout and layout container. |
PanelBuilder(javax.swing.JPanel panel,
FormLayout layout)
Deprecated.
Replaced by
PanelBuilder.PanelBuilder(FormLayout, JPanel) . |
Modifier and Type | Method and Description |
---|---|
static void |
FormDebugUtils.dumpColumnGroups(FormLayout layout)
Dumps the layout's column groups to the console.
|
static void |
FormDebugUtils.dumpColumnSpecs(FormLayout layout)
Dumps the layout's column specifications to the console.
|
static void |
FormDebugUtils.dumpRowGroups(FormLayout layout)
Dumps the layout's row groups to the console.
|
static void |
FormDebugUtils.dumpRowSpecs(FormLayout layout)
Dumps the layout's row specifications to the console.
|
Constructor and Description |
---|
FormDebugPanel(FormLayout layout)
Constructs a FormDebugPanel on the given FormLayout instance
that paints the grid in the foreground and paints no diagonals.
|
FormDebugPanel(FormLayout layout,
boolean paintInBackground,
boolean paintDiagonals)
Constructs a FormDebugPanel on the given FormLayout using
the specified settings that are otherwise turned off.
|
Modifier and Type | Method and Description |
---|---|
static FormLayout |
FormFactory.createColumnLayout(int majorColumns,
int minorColumns,
ColumnSpec labelColumnSpec)
Creates and returns an instance of
FormLayout
to build forms with the specified number of major and minor columns. |
static FormLayout |
FormFactory.createColumnLayout(int majorColumns,
int minorColumns,
ColumnSpec labelColumnSpec,
ColumnSpec componentColumnSpec,
ConstantSize indent,
ConstantSize majorColumnGap,
ConstantSize minorColumnGap)
Creates and returns an instance of
FormLayout
to build forms with the given number of major columns. |
static FormLayout |
FormFactory.createColumnLayout(int majorColumns,
int minorColumns,
ColumnSpec labelColumnSpec,
ConstantSize indent,
ConstantSize minorColumnGap)
Creates and returns an instance of
FormLayout
to build forms with the given number of major columns. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
CellConstraints.toShortString(FormLayout layout)
Returns a short string representation of this constraints object.
|
Constructor and Description |
---|
FormDebugPanel(FormLayout layout)
Constructs a FormDebugPanel on the given FormLayout instance
that paints the grid in the foreground and paints no diagonals.
|
FormDebugPanel(FormLayout layout,
boolean paintInBackground,
boolean paintDiagonals)
Constructs a FormDebugPanel on the given FormLayout using
the specified settings that are otherwise turned off.
|