Frames | No Frames |
Methods with return type com.jgoodies.forms.layout.CellConstraints | |
CellConstraints | Returns the next element in the iteration. |
Methods with parameter type com.jgoodies.forms.layout.CellConstraints | |
Component | Adds a component to the panel using the given cell constraints. |
JLabel | PanelBuilder.add(JLabel label, CellConstraints labelConstraints, Component component, CellConstraints componentConstraints) Adds a label and component to the panel using the given cell constraints. |
JLabel | Adds an internationalized (i15d) textual label to the form using the
specified constraints. |
JLabel | I15dPanelBuilder.addI15dLabel(String resourceKey, CellConstraints labelConstraints, Component component, CellConstraints componentConstraints) Adds an internationalized (i15d) label and component to the panel using
the given cell constraints. |
JComponent | Adds an internationalized (i15d) titled separator to the form using the
specified constraints. |
JLabel | Adds a title to the form using the specified constraints. |
JLabel | Adds a textual label to the form using the specified constraints. |
JLabel | PanelBuilder.addLabel(String textWithMnemonic, CellConstraints labelConstraints, Component component, CellConstraints componentConstraints) Adds a label and component to the panel using the given cell constraints. |
JComponent | Adds a titled separator to the form using the specified constraints. |
JLabel | Adds a title label to the form using the specified constraints. |
Methods with return type com.jgoodies.forms.layout.CellConstraints | |
CellConstraints | Returns the CellConstraints object that is used as a cursor and
holds the current column span and row span. |
CellConstraints | AbstractFormBuilder.createLeftAdjustedConstraints(int columnSpan) Creates and returns a CellConstraints object at
the current cursor position that uses the given column span
and is adjusted to the left. |
Methods with parameter type com.jgoodies.forms.layout.CellConstraints | |
void | Sets the constraints for the specified component in this layout. |
Methods with return type com.jgoodies.forms.layout.CellConstraints | |
CellConstraints | FormLayout.getConstraints(Component component) Looks up and returns the constraints for the specified component. |
CellConstraints | CellConstraints.xy(int col, int row) Sets row and column origins; sets width and height to 1;
uses the default alignments. |
CellConstraints | CellConstraints.xy(int col, int row, String encodedAlignments) Sets row and column origins; sets width and height to 1;
decodes horizontal and vertical alignments from the given string. |
CellConstraints | CellConstraints.xy(int col, int row, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign) Sets the row and column origins; sets width and height to 1;
set horizontal and vertical alignment using the specified objects. |
CellConstraints | CellConstraints.xyw(int col, int row, int colSpan) Sets the row, column, width, and height; uses a height (row span) of 1
and the horizontal and vertical default alignments. |
CellConstraints | CellConstraints.xyw(int col, int row, int colSpan, String encodedAlignments) Sets the row, column, width, and height;
decodes the horizontal and vertical alignments from the given string. |
CellConstraints | CellConstraints.xyw(int col, int row, int colSpan, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign) Sets the row, column, width, and height; sets the horizontal
and vertical aligment using the specified alignment objects. |
CellConstraints | CellConstraints.xywh(int col, int row, int colSpan, int rowSpan) Sets the row, column, width, and height; uses default alignments. |
CellConstraints | CellConstraints.xywh(int col, int row, int colSpan, int rowSpan, String encodedAlignments) Sets the row, column, width, and height;
decodes the horizontal and vertical alignments from the given string. |
CellConstraints | CellConstraints.xywh(int col, int row, int colSpan, int rowSpan, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign) Sets the row, column, width, and height; sets the horizontal
and vertical aligment using the specified alignment objects. |