Interface TableCell

All Superinterfaces:
DefaultDomNode, DomNode

public interface TableCell extends DefaultDomNode
Instances represents the cells of a table.
Since 4.2.17 a table cell extends the interface DomNode.
Since:
4.0.17
See Also:
  • Method Details

    • getRow

      int getRow()
      Returns the row index of this cell.
      Since:
      4.0.17
    • getColumn

      int getColumn()
      Return the column index of this cell.
      Since:
      4.0.17
    • getRowSpan

      int getRowSpan()
      Returns the rowspan defined for this table cell.
      Since:
      4.0.17
    • setRowSpan

      void setRowSpan(int rowspan)
      Provide the rowspan for this table cell.
      Since:
      4.2.22
    • getColSpan

      int getColSpan()
      Returns the colspan defined for this table cell.
      Since:
      4.0.17
    • setColSpan

      void setColSpan(int colspan)
      Provide the colspan for this table cell.
      Since:
      4.2.22
    • isAt

      boolean isAt(int row, int column)
      Returns true if this table cell originates in row row and column column.
      Since:
      4.0.17
    • getShortContent

      @Deprecated String getShortContent(@Nullable @Nullable UserService userService)
      Deprecated.
      since 5.2.21 - use getShortContent(SpecialistsBroker) instead.
      Returns a short content text of this table cell
      Since:
      4.2.14
    • getShortContent

      String getShortContent(@Nullable @Nullable SpecialistsBroker broker)
      Returns a short content text of this table cell
      Parameters:
      broker - a broker or null
      Since:
      5.0.100
    • nextCell

      @Nullable @Nullable TableCell nextCell()
      Get the next cell (of the current table row) or null it this cell is the last cell in this row.
      Since:
      4.0.17.
    • getNextSibling

      @Nullable @Nullable TableCell getNextSibling()
      Returns the next sibling node or null if there is no such node.
      Specified by:
      getNextSibling in interface DomNode
      Since:
      4.2.204