< prev index next >

tests/system/src/test/java/test/robot/com/sun/glass/ui/monocle/input/devices/TouchRevolutionFusionDevice.java

Print this page
rev 9491 : 8145203: Refactor systemTests for clear separation of tests
Reviewed-by: kcr


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   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 com.sun.glass.ui.monocle.input.devices;
  27 
  28 import com.sun.glass.ui.monocle.TestApplication;
  29 import com.sun.glass.ui.monocle.UInput;
  30 import org.junit.Assume;
  31 
  32 import java.util.HashMap;
  33 import java.util.Map;
  34 
  35 /**
  36  * TouchRevolutionFusionDevice sends ABS_X, ABS_Y, ABS_MT_POSITION_X and
  37  * ABS_MT_POSITION_Y events. It uses BTN_TOUCH to notify presses and releases.
  38  * It does not send events on coordinate that has not changed. It sends tracking
  39  * IDs for touch points and uses slots.
  40  */
  41 public class TouchRevolutionFusionDevice extends TestTouchDevice {
  42 
  43     private int currentSlot = 0;
  44     private Map<Integer, Integer> slotsToPoints = new HashMap<>();
  45     private Map<Integer, Integer> pointsToSlots = new HashMap<>();
  46 
  47     public TouchRevolutionFusionDevice() {
  48         super(5);
  49     }




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   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 test.robot.com.sun.glass.ui.monocle.input.devices;
  27 
  28 import test.robot.com.sun.glass.ui.monocle.TestApplication;
  29 import test.robot.com.sun.glass.ui.monocle.UInput;
  30 import org.junit.Assume;
  31 
  32 import java.util.HashMap;
  33 import java.util.Map;
  34 
  35 /**
  36  * TouchRevolutionFusionDevice sends ABS_X, ABS_Y, ABS_MT_POSITION_X and
  37  * ABS_MT_POSITION_Y events. It uses BTN_TOUCH to notify presses and releases.
  38  * It does not send events on coordinate that has not changed. It sends tracking
  39  * IDs for touch points and uses slots.
  40  */
  41 public class TouchRevolutionFusionDevice extends TestTouchDevice {
  42 
  43     private int currentSlot = 0;
  44     private Map<Integer, Integer> slotsToPoints = new HashMap<>();
  45     private Map<Integer, Integer> pointsToSlots = new HashMap<>();
  46 
  47     public TouchRevolutionFusionDevice() {
  48         super(5);
  49     }


< prev index next >