App
CancelableToolActionData.java
Go to the documentation of this file.
1 package mhr.appcore.tools.actiondata;
2 
6 public class CancelableToolActionData implements ToolActionData {
7 
11  public static enum Action {
12  UPDATE_PREVIEW, CANCEL_PREVIEW, COMMIT_PREVIEW
13  }
14 
15  public Action action;
16 
24  this.action = action;
25  }
26 
27 }