| java.lang.Object com.jeta.forms.gui.form.ReadOnlyConstraints
ReadOnlyConstraints | public class ReadOnlyConstraints implements ComponentConstraints(Code) | | A read-only implementation of ComponentConstraints.
author: Jeff Tassin |
Constructor Summary | |
public | ReadOnlyConstraints(int col, int row) | public | ReadOnlyConstraints(int col, int row, int colspan, int rowspan) Creates a ReadOnlyConstraints object with the specified
row and column and span. | public | ReadOnlyConstraints(int col, int row, int colspan, int rowspan, CellConstraints.Alignment halign, CellConstraints.Alignment valign, Insets insets) Creates a ReadOnlyConstraints object with the specified
constraint information. | public | ReadOnlyConstraints(ComponentConstraints cc) Creates a ReadOnlyConstraints object with the specified
constraint information. |
ReadOnlyConstraints | public ReadOnlyConstraints(int col, int row)(Code) | | Creates a ReadOnlyConstraints object with the specified
row and column
|
ReadOnlyConstraints | public ReadOnlyConstraints(int col, int row, int colspan, int rowspan)(Code) | | Creates a ReadOnlyConstraints object with the specified
row and column and span.
|
ReadOnlyConstraints | public ReadOnlyConstraints(ComponentConstraints cc)(Code) | | Creates a ReadOnlyConstraints object with the specified
constraint information.
|
clone | public Object clone()(Code) | | Always returns a read only copy of the cell constraints
|
createCellConstraints | public CellConstraints createCellConstraints()(Code) | | Creates a CellConstraints object that can be used by the FormLayout.
|
getColumn | public int getColumn()(Code) | | Return the first column occupied by the component associated with these
constraints.
the first column |
getColumnSpan | public int getColumnSpan()(Code) | | Return the number of columns occupied by the component associated with
these constraints.
the column span |
getInsets | public Insets getInsets()(Code) | | the insets for this component |
getRow | public int getRow()(Code) | | Return the first row occupied by the component associated with these
constraints.
the first row |
getRowSpan | public int getRowSpan()(Code) | | Return the number of rows occupied by the component associated with these
constraints.
the column span |
|
|