Package org.jemmy.interfaces.Mouse

Examples of org.jemmy.interfaces.Mouse.MouseButton


     * TODO Provide javadoc
     * @param button
     * @return
     */
    public MouseButton convertMouseButton(int button) {
        MouseButton res = int2button.get(button);
        if (res == null) {
            throw new JemmyException("Unable to recognize mouse button", button);
        }
        return res;
    }
View Full Code Here

TOP

Related Classes of org.jemmy.interfaces.Mouse.MouseButton

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.