|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface GridRowLayout
A layout that lays out the sub grid rows/lines of a main grid row.
| Method Summary | |
|---|---|
java.lang.Integer |
getMaximumSize(GridRow row)
Return the maximum size for the grid in the laid out dimension. |
java.lang.Integer |
getMinimumSize(GridRow row)
Return the minimum size, if any is specified. |
java.lang.Integer |
getPreferredSize(GridRow row)
Return the preferred size, if any is specified. |
java.lang.Integer[] |
getSizes(GridRow row)
Will return the values for min, preferred and max in one array. |
void |
layout(GridRow row)
Should out the sub rows of the row. |
| Method Detail |
|---|
void layout(GridRow row)
row - The grid riw which sub grid rows to layout to lay out. Not null.GridRow.getGridRows()java.lang.Integer getMinimumSize(GridRow row)
Note that this value includes grid lines.
row - The row to return the the size constraint for.
null if not specified.java.lang.Integer getPreferredSize(GridRow row)
GridSegmentSpec)
this method will return null since an absolute size can't be calculated.
Note that this value includes grid lines.
row - The row to return the the size constraint for.
null if not specified.java.lang.Integer getMaximumSize(GridRow row)
Note that this value includes grid lines.
row - The row to return the the size constraint for.
null if not specified.java.lang.Integer[] getSizes(GridRow row)
new Integer[] {getMinimumSize(row), getPreferredSize(row), getMaximumSize(row)};
Note that these value includes grid lines.
row - The row to return the the size constraint for.
null elements if not specified. Array never null
and always of length 3.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||