| Interface | Description | |
|---|---|---|
| Command |
Deprecated as of Cairngorm 2.1, replaced by com.adobe.cairngorm.commands.ICommand
The Command interface enforces the contract between the Front Controller and concrete command classes in your application. In a Cairngorm application, the application specific Front Controller will listen for events of interest, dispatching control to appropriate command classes according to the type of the event broadcast. When an event is broadcasted by the Front Controller, it will lookup its list of registered commands, to find the command capable of carrying out the appropriate work in response to the user gesture that has caused the event. |
|
| ICommand | The ICommand interface enforces the contract between the Front Controller and concrete command classes in your application. |
| Class | Description | |
|---|---|---|
| SequenceCommand | The SequenceCommand is provided as a "psuedo-abstract" (since ActionScript has no real concept of abstract classes) base-class that can be extended when you wish to chain commands together for a single user-gesture, or establish some simple form of decision-based workflow. |