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

mmarquee.automation.controls.ReBar Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy