Class TableDescription

java.lang.Object
com.hp.lft.sdk.internal.PropertiesDescriptionBase
All Implemented Interfaces:
CloneableObject, Description, com.hp.lft.sdk.internal.DescriptionWithVri, Cloneable

public class TableDescription extends UiObjectBaseDescription
The description of a Oracle 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

    • setEnabled

      public void setEnabled(Boolean isEnabled)
      Sets whether the object is enable.
      Parameters:
      isEnabled - true to set as enabled.
    • isEnabled

      public Boolean isEnabled()
      Indicates whether the object is enable.
      Returns:
      true if enabled.
    • setObjectName

      public void setObjectName(String objectName)
      Sets the name of the object supplied by the server.
      Parameters:
      objectName - the window objectName.
    • setObjectName

      public void setObjectName(StringProperty objectName)
      Sets the name of the object supplied by the server.
      Parameters:
      objectName - a StringProperty or RegExpProperty.
    • getObjectName

      public StringProperty getObjectName()
      Returns the name of the object supplied by the server.
      Returns:
      the name of the object supplied by the server.
    • setRowsCount

      public void setRowsCount(Integer rowsCount)
      Sets the number of visible rows in the table.
      Parameters:
      rowsCount - the number of rows in a table.
    • getRowsCount

      public Integer getRowsCount()
      Returns the number of visible rows in the table.
      Returns:
      the number of visible rows in the table.
    • setColumnsCount

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

      public Integer getColumnsCount()
      Returns the number of columns in the table.
      Returns:
      the number of columns in the table.
    • setColumnHeaders

      public void setColumnHeaders(String[] columnHeaders)
      Sets a collection of column headers in a table.
      Parameters:
      columnHeaders - a collection of column headers in a table.
    • getColumnHeaders

      public String[] getColumnHeaders()
      Returns the collection of column headers in a table.
      Returns:
      the collection of column headers in a table.