Show AgilePlannerGestures.java syntax highlighted
package ucalgary.ebe.ci.AgilePlanner;
import ucalgary.ebe.ci.gestures.ICIGestureIndentifier;
import ucalgary.ebe.ci.gestures.impl.Gesture;
/**
* @author hkolenda
*
*/
public class AgilePlannerGestures {
public static final String NAMESPACE = "AgilePlanner";
public static final ICIGestureIndentifier BACKLOG_ORGANIZE_ALL = new Gesture(NAMESPACE, "backlog:organize-all");
public static final ICIGestureIndentifier ITERATION_CREATE_NEW = new Gesture(NAMESPACE, "iteration:create");
public static final ICIGestureIndentifier ITERATION_ORGANIZE_ALL = new Gesture(NAMESPACE, "iteration:organzie-all");
public static final ICIGestureIndentifier STORYCARD_COLLAPSE_ALL = new Gesture(NAMESPACE, "storycard:collapse-all");
public static final ICIGestureIndentifier STORYCARD_CREATE_NEW = new Gesture(NAMESPACE, "storycard:create");
public static final ICIGestureIndentifier STORYCARD_EXPAND_ALL = new Gesture(NAMESPACE, "storycard:expand-all");
public static final ICIGestureIndentifier STORYCARD_ORGANIZE_ALL = new Gesture(NAMESPACE, "storycard:organize-all");
public static final ICIGestureIndentifier STORYCARD_SET_COMPLETED = new Gesture(NAMESPACE, "storycard:set-completed");
public static final ICIGestureIndentifier STORYCARD_ROTATION_DONE = new Gesture(NAMESPACE, "storycard:rotation-done");
public static final ICIGestureIndentifier STORYCARD_ISROTATING = new Gesture(NAMESPACE, "storycard:rotating");
public static final ICIGestureIndentifier STORYCARD_BESTCASE_SETTING = new Gesture(NAMESPACE, "storycard:bestcase-setting");
public static final ICIGestureIndentifier STORYCARD_BESTCASE_SET = new Gesture(NAMESPACE, "storycard:bestcase-set");
}
See more files for this project here