Class TableDescription

All Implemented Interfaces:
CloneableObject, Description, com.hp.lft.sdk.internal.DescriptionWithVri, Cloneable

public class TableDescription extends TableDescription
The description of an SAPUI5 Table test object.
  • Constructor Details

    • TableDescription

      public TableDescription()
      Initializes a new instance of the TableDescription class.
    • TableDescription

      protected TableDescription(TableDescription.Init<?> init)
      Initializes a new instance of the TableDescription class using the Builder pattern.
      Parameters:
      init - the Builder pattern.
  • Method Details

    • setColumnHeaders

      public void setColumnHeaders(String[] columns)
      Sets a collection of semicolon-delimited table column headers.
      Overrides:
      setColumnHeaders in class TableDescription
      Parameters:
      columns - the column headers, separated by semicolons (;).
    • getColumnHeaders

      public String[] getColumnHeaders()
      Returns a collection of semicolon-delimited table column headers.
      Overrides:
      getColumnHeaders in class TableDescription
      Returns:
      A collection of semicolon-delimited table column headers.
    • setRowsCount

      public void setRowsCount(Integer rowsCount)
      Sets the number of rows in the table not including the header (1-based).
      Overrides:
      setRowsCount in class TableDescription
      Parameters:
      rowsCount - the number of rows in the table not including the header (1-based).
    • getRowsCount

      public Integer getRowsCount()
      Returns the number of rows in the table not including the header (1-based).
      Overrides:
      getRowsCount in class TableDescription
      Returns:
      The number of rows in the table not including the header (1-based).
    • setColumnsCount

      public void setColumnsCount(Integer columnsCount)
      Sets the number of columns in the table.
      Overrides:
      setColumnsCount in class TableDescription
      Parameters:
      columnsCount - the number of columns in the table.
    • getColumnsCount

      public Integer getColumnsCount()
      Returns the number of columns in the table.
      Overrides:
      getColumnsCount in class TableDescription
      Returns:
      The number of columns in the table.