| Package | org.springextensions.actionscript.core.command |
| SVN browsing | CompositeCommandKind.as |
| Fisheye | CompositeCommandKind.as |
| Class | public final class CompositeCommandKind |
ICompositeCommand can execute its collection
of ICommands
See also
Documentation reference: composite commands
| Property | Defined by | ||
|---|---|---|---|
| name : String [read-only]
Returns the name of the current
ComposeiteCommandKind. | CompositeCommandKind | ||
| Method | Defined by | ||
|---|---|---|---|
|
CompositeCommandKind(name:String)
Creates a new
ComposeiteCommandKind instance. | CompositeCommandKind | ||
|
fromName(name:String):CompositeCommandKind
[static]
Returns the
ComposeiteCommandKind instance whose name property is equivalent
to the specified name argument, or null if the name doesn't exist. | CompositeCommandKind | ||
|
toString():String
Returns a string representation of the current
ComposeiteCommandKind. | CompositeCommandKind | ||
| Constant | Defined by | ||
|---|---|---|---|
| PARALLEL : CompositeCommandKind
[static]
Determines that the
ICompositeCommand will execute its collection of command all at the same time. | CompositeCommandKind | ||
| SEQUENCE : CompositeCommandKind
[static]
Determines that the
ICompositeCommand will execute its collection of command one after the other. | CompositeCommandKind | ||
| name | property |
name:String [read-only]
Returns the name of the current ComposeiteCommandKind.
public function get name():String
| CompositeCommandKind | () | constructor |
public function CompositeCommandKind(name:String)
Creates a new ComposeiteCommandKind instance. Do not call this constructor
directly, it is only used internally the create the appropriate instances.
name:String — The string representation of the current ComposeiteCommandKind instance.
|
| fromName | () | method |
public static function fromName(name:String):CompositeCommandKind
Returns the ComposeiteCommandKind instance whose name property is equivalent
to the specified name argument, or null if the name doesn't exist.
name:String — the specified name.
|
CompositeCommandKind —
The ComposeiteCommandKind instance whose name property is equivalent
to the specified name argument, or null if the name doesn't exist.
|
| toString | () | method |
public function toString():String
Returns a string representation of the current ComposeiteCommandKind.
String — A string representation of the current ComposeiteCommandKind.
|
| PARALLEL | constant |
public static const PARALLEL:CompositeCommandKind
Determines that the ICompositeCommand will execute its collection of command all at the same time.
| SEQUENCE | constant |
public static const SEQUENCE:CompositeCommandKind
Determines that the ICompositeCommand will execute its collection of command one after the other.