| Package | org.spicefactory.lib.command.builder |
| Class | public class LinkTargetBuilder |
| Inheritance | LinkTargetBuilder Object |
| Method | Defined By | ||
|---|---|---|---|
toCommandInstance(command:Object):CommandLinkBuilder
Links to the specified command instance as the next command to execute. | LinkTargetBuilder | ||
toCommandType(type:Class):CommandLinkBuilder
Links to the specified command type as the next command to execute. | LinkTargetBuilder | ||
Links to the end of the flow, meaning that the flow will signal successful completion. | LinkTargetBuilder | ||
| toCommandInstance | () | method |
public function toCommandInstance(command:Object):CommandLinkBuilderLinks to the specified command instance as the next command to execute.
Parameters
command:Object — the command instance to execute
|
CommandLinkBuilder — the link builder to specify further links for the same command
|
| toCommandType | () | method |
public function toCommandType(type:Class):CommandLinkBuilderLinks to the specified command type as the next command to execute.
Parameters
type:Class — the type of command to execute
|
CommandLinkBuilder — the link builder to specify further links for the same command
|
| toFlowEnd | () | method |
public function toFlowEnd():CommandLinkBuilderLinks to the end of the flow, meaning that the flow will signal successful completion.
ReturnsCommandLinkBuilder — the link builder to specify further links for the same command
|