Package com.hp.lft.sdk.java
Interface SpinBox
- All Superinterfaces:
- Clickable,- DoubleClickable,- EnabledProvider,- LocationInfoProvider,- SupportsNativeObject,- TestObject,- TestObjectDescriber,- UiObjectBase,- VisibleProvider,- WaitUntilEnabledProvider,- WaitUntilVisibleProvider
A Java spin box object.
- 
Method SummaryModifier and TypeMethodDescriptionvoiddown()Sets this spin box to the next lower value.Returns the maximum value of the spin box.Returns the minimum value of the spin box.getValue()Returns the spin box value.voidSets the spin box value.voidup()Sets this spin box to the next higher value.Methods inherited from interface com.hp.lft.sdk.DoubleClickabledoubleClick, doubleClick, doubleClickMethods inherited from interface com.hp.lft.sdk.EnabledProviderisEnabledMethods inherited from interface com.hp.lft.sdk.LocationInfoProvidergetAbsoluteLocation, getLocation, getSizeMethods inherited from interface com.hp.lft.sdk.SupportsNativeObjectgetNativeObjectMethods inherited from interface com.hp.lft.sdk.TestObjectcallFTMethod, callFTMethod, exists, exists, findChildren, getDescription, getDisplayName, getParent, getSnapshot, getTextLocations, getTextLocations, getVisibleText, getVisibleText, highlight, highlightMatches, setDescription, setDisplayName, verifyImageExists, verifyImageExists, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, waitUntilExists, waitUntilExistsMethods inherited from interface com.hp.lft.sdk.TestObjectDescriberdescribeMethods inherited from interface com.hp.lft.sdk.java.UiObjectBasecreateObject, createObject, fireEvent, getAttachedText, getBackgroundColor, getForegroundColor, getLabel, getNativeClass, getObjectName, getObjectProperty, getPath, getStatics, getTagName, isFocused, sendKeys, sendKeysMethods inherited from interface com.hp.lft.sdk.VisibleProviderisVisibleMethods inherited from interface com.hp.lft.sdk.WaitUntilEnabledProviderwaitUntilEnabled, waitUntilEnabledMethods inherited from interface com.hp.lft.sdk.WaitUntilVisibleProviderwaitUntilVisible, waitUntilVisible
- 
Method Details- 
upSets this spin box to the next higher value.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
downSets this spin box to the next lower value.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getValueReturns the spin box value.- Returns:
- the spin box value.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
setValueSets the spin box value.- Parameters:
- value- the value of the spin box. Note: For SWT spinner objects, the parameter value must be an Integer (provided in String format, such as: "6", "7000", "34").
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getMaximumReturns the maximum value of the spin box.- Returns:
- the maximum value of the spin box.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getMinimumReturns the minimum value of the spin box.- Returns:
- the minimum value of the spin box.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-