Class Cell
Indicates how to arrange one or more
RGBStacks 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 newCellinstance. -
Method Summary
Modifier and TypeMethodDescriptionHow to arrange anyRGBStacks in this particular cell.intThe column in the table that the cell refers to (zero-indexed).intgetRow()The row in the table that the cell refers to (zero-indexed).voidsetArrange(StackArranger arrange) How to arrange anyRGBStacks in this particular cell.voidsetColumn(int column) The column in the table that the cell refers to (zero-indexed).voidsetRow(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 newCellinstance.- Parameters:
arrange- How to arrange anyRGBStacks 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 anyRGBStacks in this particular cell. -
setArrange
How to arrange anyRGBStacks 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).
-