Package | com.asfusion.mate.actions |
Class | public class InlineInvoker |
Inheritance | InlineInvoker AbstractAction |
Implements | IAction |
Property | Defined by | ||
---|---|---|---|
arguments : *
The property
arguments allows you to pass an Object or an Array of objects when calling
the function defined in the property method . | InlineInvoker | ||
method : Function
The function to call on the created object.
| InlineInvoker |
Method | Defined by | ||
---|---|---|---|
The last method that
trigger calls. | AbstractAction | ||
The first method that
trigger calls. | AbstractAction | ||
Where all the action occurs.
| InlineInvoker | ||
setProperties(scope:IScope):void
Where all the properties are set into the
currentInstance . | AbstractAction |
arguments | property |
arguments:*
[read-write]
The property arguments
allows you to pass an Object or an Array of objects when calling
the function defined in the property method
.
You can use an array to pass multiple arguments or use a simple Object if the signature of the
method
has only one parameter.
The default value is undefined
.
public function get arguments():*
public function set arguments(value:*):void
method | property |
method:Function
[read-write]The function to call on the created object.
The default value is null
.
public function get method():Function
public function set method(value:Function):void
run | () | method |
protected override function run(scope:IScope):void
Where all the action occurs. At this moment, the currentInstance
is already instantiated and all the properties are already set.
scope:IScope |