Class SpinBoxDescription

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

public class SpinBoxDescription extends UiObjectBaseDescription
The description of a Java SpinBox test object.
  • Constructor Details

    • SpinBoxDescription

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

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

    • getValue

      public StringProperty getValue()
      Returns the spin box value.
      Returns:
      the spin box value.
    • setValue

      public void setValue(StringProperty value)
      Sets the spin box value.
      Parameters:
      value - a StringProperty or RegExpProperty representing the value of the spin box.
    • setValue

      public void setValue(String value)
      Sets the spin box value.
      Parameters:
      value - the value of the spin box.
    • getMaximum

      public StringProperty getMaximum()
      Returns the maximum value of the spin box.
      Returns:
      the maximum value of the spin box.
    • setMaximum

      public void setMaximum(StringProperty max)
      Sets the maximum value of the spin box.
      Parameters:
      max - a StringProperty or RegExpProperty representing the maximum value of the spin box.
    • setMaximum

      public void setMaximum(String max)
      Sets the maximum value of the spin box.
      Parameters:
      max - the maximum value of the spin box.
    • getMinimum

      public StringProperty getMinimum()
      Returns the minimum value of the spin box.
      Returns:
      the minimum value of the spin box.
    • setMinimum

      public void setMinimum(StringProperty min)
      Sets the minimum value of the spin box.
      Parameters:
      min - a StringProperty or RegExpProperty representing the minimum value of the spin box.
    • setMinimum

      public void setMinimum(String min)
      Sets the minimum value of the spin box.
      Parameters:
      min - the minimum value of the spin box.