Class Cell
Indicates how to arrange one or more
RGBStack
s in a cell in a table.
See Tile
for the higher-level structure that uses this entity.
- Author:
- Owen Feehan
-
Constructor Summary
ConstructorsConstructorDescriptionCell()
Cell
(StackArranger arrange, int row, int column) Creates a newCell
instance. -
Method Summary
Modifier and TypeMethodDescriptionHow to arrange anyRGBStack
s in this particular cell.int
The column in the table that the cell refers to (zero-indexed).int
getRow()
The row in the table that the cell refers to (zero-indexed).void
setArrange
(StackArranger arrange) How to arrange anyRGBStack
s in this particular cell.void
setColumn
(int column) The column in the table that the cell refers to (zero-indexed).void
setRow
(int row) The row in the table that the cell refers to (zero-indexed).Methods inherited from class org.anchoranalysis.bean.AnchorBean
checkMisconfigured, describeBean, describeChildren, duplicateBean, fields, findFieldsOfClass, getBeanName, getLocalPath, localise, toString
-
Constructor Details
-
Cell
Creates a newCell
instance.- Parameters:
arrange
- How to arrange anyRGBStack
s in this particular cell.row
- The row in the table that the cell refers to (zero-indexed).column
- The column in the table that the cell refers to (zero-indexed).
-
Cell
public Cell()
-
-
Method Details
-
getArrange
How to arrange anyRGBStack
s in this particular cell. -
setArrange
How to arrange anyRGBStack
s in this particular cell. -
getRow
public int getRow()The row in the table that the cell refers to (zero-indexed). -
setRow
public void setRow(int row) The row in the table that the cell refers to (zero-indexed). -
getColumn
public int getColumn()The column in the table that the cell refers to (zero-indexed). -
setColumn
public void setColumn(int column) The column in the table that the cell refers to (zero-indexed).
-