mmarquee.automation.controls.ReBar 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.
The newest version!
package mmarquee.automation.controls;
import mmarquee.automation.AutomationException;
/**
* Specialised type of pane, with a specific control name.
*
* @author Mark Humphreys
* Date 02/03/2016.
*
*/
public final class ReBar extends Panel {
/**
* The class name.
*/
public final static String CLASS_NAME = "ReBarWindow32";
/**
* Construct the ReBar.
*
* @param builder The builder
* @throws AutomationException Automation library error
*/
public ReBar(final ElementBuilder builder)
throws AutomationException {
super(builder);
assertClassName(CLASS_NAME);
}
}