Class Cell
public class Cell extends AnchorBean<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
Constructors Constructor Description Cell()Cell(StackArranger arrange, int row, int column) -
Method Summary
Modifier and Type Method Description StackArrangergetArrange()How to arrange anyRGBStacks in this particular cell.intgetColumn()The 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
-
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).
-