Packageorg.spicefactory.lib.command
Interfacepublic interface CommandResult
Implementors CommandResultEvent, DefaultCommandResult

Represents the result of a command execution.



Public Properties
 PropertyDefined By
  command : Object
[read-only] The command that produced the result.
CommandResult
  complete : Boolean
[read-only] Whether the command completed successfully.
CommandResult
  value : Object
[read-only] The actual result value.
CommandResult
Property Detail
commandproperty
command:Object  [read-only]

The command that produced the result.


Implementation
    public function get command():Object
completeproperty 
complete:Boolean  [read-only]

Whether the command completed successfully. If this flag is false, the value property represents the error thrown or dispatched by the command.


Implementation
    public function get complete():Boolean
valueproperty 
value:Object  [read-only]

The actual result value.


Implementation
    public function get value():Object