Package org.jemmy.interfaces.Keyboard

Examples of org.jemmy.interfaces.Keyboard.KeyboardButton


     * TODO Provide javadoc
     * @param key
     * @return
     */
    public KeyboardButton convertKeyboardButton(int key) {
        KeyboardButton res = int2key.get(key);
        if (res == null) {
            throw new JemmyException("Unable to recognize key", key);
        }
        return res;
    }
View Full Code Here

TOP

Related Classes of org.jemmy.interfaces.Keyboard.KeyboardButton

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.