Class TabControlDescription

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

public class TabControlDescription extends UiObjectBaseDescription
The description of a Java TabControl test object.
  • Constructor Details

    • TabControlDescription

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

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

    • setTabsCount

      public void setTabsCount(Integer count)
      Sets the number of tabbed panels contained in the tab object.
      Parameters:
      count - the number of tabbed panels contained in the tab object.
    • getTabsCount

      public Integer getTabsCount()
      Returns the number of tabbed panels contained in the tab object.
      Returns:
      the number of tabbed panels contained in the tab object.
    • setSelectedTab

      public void setSelectedTab(StringProperty selectedTab)
      Selects the specified tabbed panel .
      Parameters:
      selectedTab - a StringProperty or RegExpProperty.
    • setSelectedTab

      public void setSelectedTab(String selectedTab)
      Selects the specified tabbed panel.
      Parameters:
      selectedTab - the tabbed panel.
    • getSelectedTab

      public StringProperty getSelectedTab()
      Returns the specified tabbed panel.
      Returns:
      the tabbed panel.
    • setOrigLogicalLocation

      public void setOrigLogicalLocation(StringProperty origLogicalLocation)
      Sets the original logical location of the tab object relative to the parent object.
      Parameters:
      origLogicalLocation - a StringProperty or RegExpProperty of form X_<x_logical_loc>__Y_<y_logical_loc> where logical_loc is one of 'SMALL', 'BIG', 'FULL', 'CENTER' or 'UNK' if no significance was found.
    • setOrigLogicalLocation

      public void setOrigLogicalLocation(String origLogicalLocation)
      Sets the original logical location of the tab object relative to the parent object.
      Parameters:
      origLogicalLocation - a string of form X_<x_logical_loc>__Y_<y_logical_loc> where logical_loc is one of 'SMALL', 'BIG', 'FULL', 'CENTER' or 'UNK' if no significance was found.
    • getOrigLogicalLocation

      public StringProperty getOrigLogicalLocation()
      Returns the original logical location of the tab object.
      Returns:
      a string of form X_<x_logical_loc>__Y_<y_logical_loc> where logical_loc is one of 'SMALL', 'BIG', 'FULL', 'CENTER' or 'UNK' if no significance was found.