JAL-1807 update
[jalviewjs.git] / src / javajs / api / GenericMouseInterface.java
1 package javajs.api;
2
3 public interface GenericMouseInterface {
4
5   boolean processEvent(int id, int x, int y, int modifiers, long time);
6
7   void clear();
8
9   void dispose();
10
11         void processTwoPointGesture(float[][][] touches);
12
13 }