Packagesystem.process
Classpublic class ActionEntry
InheritanceActionEntry Inheritance Object
Implements Priority

Contains all informations about an Action.



Public Properties
 PropertyDefined By
  action : Action
The Action reference of this entry.
ActionEntry
  auto : Boolean
Indicates if the action must be removed when handle the first time the finish phase of the process.
ActionEntry
  priority : int
Determinates the priority value of the entry.
ActionEntry
Public Methods
 MethodDefined By
  
ActionEntry(action:Action = null, priority:int = 0, auto:Boolean = false)
Creates a new ActionEntry instance.
ActionEntry
  
toString():String
Returns the String representation of the object.
ActionEntry
Property Detail
actionproperty
public var action:Action

The Action reference of this entry.

autoproperty 
public var auto:Boolean

Indicates if the action must be removed when handle the first time the finish phase of the process.

priorityproperty 
priority:int

Determinates the priority value of the entry.


Implementation
    public function get priority():int
    public function set priority(value:int):void
Constructor Detail
ActionEntry()Constructor
public function ActionEntry(action:Action = null, priority:int = 0, auto:Boolean = false)

Creates a new ActionEntry instance.

Parameters
action:Action (default = null) — The Action reference.
 
priority:int (default = 0) — The priority value of the entry.
 
auto:Boolean (default = false) — Indicates if the action must be removed when handle the first time the finish phase of the process.
Method Detail
toString()method
public function toString():String

Returns the String representation of the object.

Returns
String — the String representation of the object.