< prev index next >

functional/ControlsTests/src/javafx/scene/control/test/textinput/TextInputExternalWrap.java

Print this page




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.control.test.textinput;
  27 
  28 import com.sun.javafx.scene.text.HitInfo;
  29 import javafx.scene.Node;
  30 import javafx.scene.control.TextInputControl;
  31 import javafx.scene.control.test.textinput.TextInputChanger.TextInputControlWrapInterface;
  32 import javafx.scene.text.Text;
  33 import org.jemmy.action.GetAction;
  34 import org.jemmy.control.Wrap;
  35 import org.jemmy.fx.Root;
  36 import org.jemmy.interfaces.Keyboard;
  37 import org.jemmy.interfaces.Keyboard.KeyboardButtons;
  38 import org.jemmy.interfaces.Keyboard.KeyboardModifier;
  39 import org.jemmy.interfaces.Keyboard.KeyboardModifiers;
  40 import org.jemmy.interfaces.Parent;
  41 import org.jemmy.lookup.LookupCriteria;
  42 import test.javaclient.shared.Utils;
  43 
  44 public class TextInputExternalWrap implements TextInputControlWrapInterface {
  45 
  46     protected Wrap<? extends TextInputControl> wrap = null;
  47     protected Wrap<? extends Text> textWrap = null;
  48     protected Keyboard kbd = null;




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.control.test.textinput;
  27 

  28 import javafx.scene.Node;
  29 import javafx.scene.control.TextInputControl;
  30 import javafx.scene.control.test.textinput.TextInputChanger.TextInputControlWrapInterface;
  31 import javafx.scene.text.Text;
  32 import org.jemmy.action.GetAction;
  33 import org.jemmy.control.Wrap;
  34 import org.jemmy.fx.Root;
  35 import org.jemmy.interfaces.Keyboard;
  36 import org.jemmy.interfaces.Keyboard.KeyboardButtons;
  37 import org.jemmy.interfaces.Keyboard.KeyboardModifier;
  38 import org.jemmy.interfaces.Keyboard.KeyboardModifiers;
  39 import org.jemmy.interfaces.Parent;
  40 import org.jemmy.lookup.LookupCriteria;
  41 import test.javaclient.shared.Utils;
  42 
  43 public class TextInputExternalWrap implements TextInputControlWrapInterface {
  44 
  45     protected Wrap<? extends TextInputControl> wrap = null;
  46     protected Wrap<? extends Text> textWrap = null;
  47     protected Keyboard kbd = null;


< prev index next >