Class Row

  • All Implemented Interfaces:
    StyleTarget

    public class Row
    extends Element
    implements StyleTarget
    A class representing a row in an HTML table.

    Rows can be header rows or not, can have specific classes or styles applied, and contain Cells.

    • Constructor Detail

      • Row

        public Row()
        Constructs a new row with all empty data
    • Method Detail

      • add

        public void add​(Cell c)
                 throws sailpoint.tools.GeneralException
        Adds a new cell to the end of this row.

        THe cell will be modified according to the cell options set via setOptions if any are set.

        Parameters:
        c - The cell
        Throws:
        sailpoint.tools.GeneralException - if any of the CellOptions specified throw an error
      • render

        public void render​(StringBuilder builder)
        Renders this row (and all of its Cells) to HTML, writing to the provided StringBuilder
        Parameters:
        builder - The StringBuilder to write to
      • setHeader

        public void setHeader​(boolean header)