Package com.inductiveautomation.rm.shape
Class RMShapeTable.Cell
- java.lang.Object
-
- com.inductiveautomation.rm.shape.RMShapeTable.Cell
-
- Enclosing class:
- RMShapeTable
public class RMShapeTable.Cell extends java.lang.Object
An inner class that represents a table cell.
-
-
Constructor Summary
Constructors Constructor Description Cell(RMShapeTable.Row aRow, RMShapeTable.Column aColumn)
Creates a new cell.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RMShapeTable.Column
getColumn()
Returns the cell column.RMShapeTable.Row
getRow()
Returns the cell row.boolean
isEmpty()
Returns whether cell is empty.boolean
isVisible()
Returns whether cell is visible.
-
-
-
Constructor Detail
-
Cell
public Cell(RMShapeTable.Row aRow, RMShapeTable.Column aColumn)
Creates a new cell.
-
-
Method Detail
-
getRow
public RMShapeTable.Row getRow()
Returns the cell row.
-
getColumn
public RMShapeTable.Column getColumn()
Returns the cell column.
-
isEmpty
public boolean isEmpty()
Returns whether cell is empty.
-
isVisible
public boolean isVisible()
Returns whether cell is visible.
-
-