Show IGestureRecognizer.java syntax highlighted
package ucalgary.ebe.ci.gestures.recognition;
import ucalgary.ebe.ci.gestures.events.ICIGestureEvent;
/**
* @author hkolenda
*
*/
public interface IGestureRecognizer {
/**
* tells the class, that a new gestures is started, so the implementation
* can clean up variables
*
*/
public void startGesture();
/**
* tells the gesture recognizer that
*
* @param processData
* @return
*/
public ICIGestureEvent stopGesture(boolean processData);
public void putCoord(int x, int y, int id);
public ICIGestureEvent putCoord(int x, int y, int id, boolean processData);
public void setPosition(int position);
}
See more files for this project here