Code Search for Developers
 
 
  

DefaultGestures.java from MASE: Agile Software Engineering at Krugle


Show DefaultGestures.java syntax highlighted

package ucalgary.ebe.ci.gestures;

import ucalgary.ebe.ci.gestures.impl.Gesture;

/**
 * @author hkolenda
 * 
 */
public class DefaultGestures {

    public static final String NAMESPACE = "default";

    public static final ICIGestureIndentifier COPY = new Gesture(NAMESPACE, "copy");

    public static final ICIGestureIndentifier CUT = new Gesture(NAMESPACE, "cut");

    public static final ICIGestureIndentifier DELETE = new Gesture(NAMESPACE, "delete");

    public static final ICIGestureIndentifier MENU = new Gesture(NAMESPACE, "menu");

    public static final ICIGestureIndentifier MOVE = new Gesture(NAMESPACE, "");

    public static final ICIGestureIndentifier NOTHING = new Gesture(NAMESPACE, "nothing");

    public static final ICIGestureIndentifier PASTE = new Gesture(NAMESPACE, "paste");

    public static final ICIGestureIndentifier REDO = new Gesture(NAMESPACE, "redo");

    public static final ICIGestureIndentifier SELECT = new Gesture(NAMESPACE, "select");

    public static final ICIGestureIndentifier UNDO = new Gesture(NAMESPACE, "undo");

    public static final ICIGestureIndentifier POINTING = new Gesture(NAMESPACE, "point");

    public static final ICIGestureIndentifier NEW = new Gesture(NAMESPACE, "new");

    public static final ICIGestureIndentifier SAVE = new Gesture(NAMESPACE, "save");

}




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

  events/
    impl/
      CIGestureEvent.java
    ICIGestureEvent.java
    ICIGestureListener.java
  helpers/
    PointCalculations.java
  impl/
    AbstractCIGestureProvider.java
    Gesture.java
    MultiInputGestureProvider.java
  input/
    mouse/
      MouseProviderInput.java
    swt/
      SWTMouseInput.java
      SWTMouseWithKeyComboInput.java
      SWTMouseWithKeyInput.java
    AbstractGestureInput.java
    AbstractTimedInput.java
    GestureInput.java
    GestureInputListener.java
  recognition/
    direction/
      AbsoluteCoordsRecongition.java
      DirectionReconizer.java
      Directions.java
      IDirectionRecognizer.java
      IGestureTable.java
      MouseDirectionList.java
    distance/
      DistanceRecognition.java
    position/
      PositionRecognizer.java
    IGestureRecognizer.java
  DefaultGestures.java
  DefaultGesturesAdapter.java
  ICIGestureIndentifier.java
  ICIGestureProvider.java