mmarquee.automation.controls.rebar.AutomationReBar 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.rebar;
import mmarquee.automation.AutomationElement;
import mmarquee.automation.AutomationException;
import mmarquee.automation.ControlType;
import mmarquee.automation.controls.AutomationContainer;
import mmarquee.automation.controls.AutomationPanel;
import mmarquee.automation.pattern.ItemContainer;
import mmarquee.automation.pattern.PatternNotFoundException;
/**
* Created by Mark Humphreys on 02/03/2016.
*
* Specialised type of pane, with a specific control name
*/
public class AutomationReBar extends AutomationPanel {
/**
* Construct the AutomationReBar
* @param element The element
* @throws AutomationException Automation library error
* @throws PatternNotFoundException Pattern not found
*/
public AutomationReBar(AutomationElement element) throws PatternNotFoundException, AutomationException {
super(element);
}
/**
* Construct the AutomationReBar
* @param element The element
* @param containerPattern The container Pattern
* @throws AutomationException Automation library error
* @throws PatternNotFoundException Pattern not found
*/
public AutomationReBar(AutomationElement element, ItemContainer containerPattern) throws PatternNotFoundException, AutomationException {
super(element, containerPattern);
}
}