commands:Array [read-only]
Returns an Array of Strings which represent the type of command
to register to.
Implementation
public function get commands():Array
public function applyAction(command:Event):void
This method is called by the EventBroker when a registerd
command has been broadcasted. The argument type is set to
Event which is the base class of the AbstractCommand. The
EventBroker can dispatch both Events and Commands to an Action
depending on how the action was registered to the command.
Parameters
| command:Event — The command(Event) passed from the EventBroker.
|