All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mmarquee.automation.controls.rebar.AutomationReBar Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy