| Package | org.springextensions.actionscript.cairngorm.commands |
| SVN browsing | AbstractResponderCommand.as |
| Fisheye | AbstractResponderCommand.as |
| Class | public class AbstractResponderCommand |
| Implements | com.adobe.cairngorm.commands.ICommand, IBusinessDelegateAware, mx.rpc.IResponder |
Documentation reference: the command factory
| Property | Defined by | ||
|---|---|---|---|
| businessDelegate : IBusinessDelegate
A
IBusinessDelegate used by the current AbstractResponderCommand, the current instance
will set itself as the responder to this IBusinessDelegate instance. | AbstractResponderCommand | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new
AbstractResponderCommand instance. | AbstractResponderCommand | ||
|
execute(event:CairngormEvent):void
Executes the current
AbstractResponderCommand, this is where the IBusinessDelegate will need to be invoked. | AbstractResponderCommand | ||
|
fault(info:Object):void
Method used ot handle the
IBusinessDelegate fault. | AbstractResponderCommand | ||
|
result(data:Object):void
Method used ot handle the
IBusinessDelegate result. | AbstractResponderCommand | ||
| businessDelegate | property |
businessDelegate:IBusinessDelegate [read-write]
A IBusinessDelegate used by the current AbstractResponderCommand, the current instance
will set itself as the responder to this IBusinessDelegate instance.
public function get businessDelegate():IBusinessDelegate
public function set businessDelegate(value:IBusinessDelegate):void
| AbstractResponderCommand | () | constructor |
public function AbstractResponderCommand()
Creates a new AbstractResponderCommand instance.
| execute | () | method |
public function execute(event:CairngormEvent):void
Executes the current AbstractResponderCommand, this is where the IBusinessDelegate will need to be invoked.
event:CairngormEvent |
See also
| fault | () | method |
public function fault(info:Object):void
Method used ot handle the IBusinessDelegate fault.
info:Object |
See also
| result | () | method |
public function result(data:Object):void
Method used ot handle the IBusinessDelegate result.
data:Object |
See also