Packagecom.developmentarc.framework.controllers.abstracts
Classpublic class AbstractCommand
InheritanceAbstractCommand Inheritance flash.events.Event

The AbstractCommand is a base class for any extending Command. The AbstractCommand adds a dispatch() helper method to make command dispatching easier.



Public Methods
 MethodDefined by
  
AbstractCommand(type:String)
Constructor.
AbstractCommand
  
dispatch():void
Dispatches the command through the EventBroker which will then be passed to any registered action.
AbstractCommand
Constructor detail
AbstractCommand()constructor
public function AbstractCommand(type:String)

Constructor.

Parameters
type:String — The type of command.
Method detail
dispatch()method
public function dispatch():void

Dispatches the command through the EventBroker which will then be passed to any registered action.