com.mindfusion.diagramming
Class Action

java.lang.Object
  extended by com.mindfusion.diagramming.Action

public class Action
extends java.lang.Object

Provides constants that identify the current operation carried out interactively on an item. Usually you would pass one of these constants to the constructor of an InteractionState instance when implementing custom BehaviorBase classes.


Field Summary
static int Create
          Specifies that a new item is currently being drawn by a user.
static int Modify
          Specifies that an existing item is being modified.
static int None
          Specifies that there isn't any action being performed on an item.
static int Split
          Specifies that a segment of an arrow is being split.
 
Constructor Summary
Action()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

None

public static final int None
Specifies that there isn't any action being performed on an item.

See Also:
Constant Field Values

Create

public static final int Create
Specifies that a new item is currently being drawn by a user.

See Also:
Constant Field Values

Modify

public static final int Modify
Specifies that an existing item is being modified.

See Also:
Constant Field Values

Split

public static final int Split
Specifies that a segment of an arrow is being split.

See Also:
Constant Field Values
Constructor Detail

Action

public Action()