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 Details

    • Cell

      public Cell(StackArranger arrange, int row, int column)
      Creates a new Cell instance.
      Parameters:
      arrange - How to arrange any RGBStacks 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

      public StackArranger getArrange()
      How to arrange any RGBStacks in this particular cell.
    • setArrange

      public void setArrange(StackArranger arrange)
      How to arrange any RGBStacks 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).