Code Search for Developers
 
 
  

IGestureRecognizer.java from MASE: Agile Software Engineering at Krugle


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

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  direction/
    AbsoluteCoordsRecongition.java
    DirectionReconizer.java
    Directions.java
    IDirectionRecognizer.java
    IGestureTable.java
    MouseDirectionList.java
  distance/
    DistanceRecognition.java
  position/
    PositionRecognizer.java
  IGestureRecognizer.java