org.netbeans.jemmy.drivers.text.GoAndBackKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jemmy Show documentation
Show all versions of jemmy Show documentation
Jemmy is a Java UI testing library. Jemmy represents the most natural way to test Java UI - perform the
testing right from the Java code. Jemmy is a Java library which provides clear and straightforward API to access
Java UI (AWT and Swing).
The newest version!
/*
* The contents of this file are subject to the terms of the Common Development
* and Distribution License (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at http://www.netbeans.org/cddl.html
* or http://www.netbeans.org/cddl.txt.
*
* When distributing Covered Code, include this CDDL Header Notice in each file
* and include the License file at http://www.netbeans.org/cddl.txt.
* If applicable, add the following below the CDDL Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* The Original Software is the Jemmy library.
* The Initial Developer of the Original Software is Alexandre Iline.
* All Rights Reserved.
*
* Contributor(s): Alexandre Iline.
*
* $Id: GoAndBackKey.java,v 1.2 2006/06/30 14:00:40 jtulach Exp $ $Revision: 1.2 $ $Date: 2006/06/30 14:00:40 $
*
*/
package org.netbeans.jemmy.drivers.text;
abstract class GoAndBackKey extends NavigationKey{
public GoAndBackKey(int keyCode, int mods) {
super(keyCode, mods);
}
public abstract GoAndBackKey getBackKey();
}