mmarquee.automation.controls.Slider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-automation Show documentation
Show all versions of ui-automation Show documentation
A Java library that wraps the MS UIAutomation library.
package mmarquee.automation.controls;
/**
* Wrapper for the Slider element.
*
* @author Mark Humphreys
* Date 15/02/2016.
*
* IRangeProvider, ISelectionProvider, IValueProvider
*/
public final class Slider extends AutomationBase
implements ImplementsRangeValue {
/**
* Construct the Slider.
* @param builder The builder
*/
public Slider(final ElementBuilder builder) {
super(builder);
}
}