| Package | org.springextensions.actionscript.context.support.mxml |
| SVN browsing | Param.as |
| Fisheye | Param.as |
| Class | public class Param |
| Inheritance | Param AbstractMXMLObject |
Param object. This non-visual component must be declared as
a child component of a ObjectDefinition component.
The value of a Param instance will be replaced in the definition of a Template
using the name of the Param as a placeholder name, formatted like this: '#' + Param.name + '#'.
See also
Documentation reference: composing mxml based configuration metadata
| Property | Defined by | ||
|---|---|---|---|
![]() | document : Object
The MXML document that created this object.
| AbstractMXMLObject | |
![]() | id : String
The identifier used by
document to refer to this object. | AbstractMXMLObject | |
![]() | isInitialized : Boolean | AbstractMXMLObject | |
| name : String
The name of the parameter.
| Param | ||
| value : *
The value that will be used for placeholder substitution in the
Template definition. | Param | ||
| Method | Defined by | ||
|---|---|---|---|
|
Param()
Creates a new
Param instance
| Param | ||
|
clone():*
| Param | ||
![]() |
initializeComponent():void
| AbstractMXMLObject | |
![]() |
initialized(document:Object, id:String):void
| AbstractMXMLObject | |
| name | property |
name:String [read-write]
The name of the parameter. This is also the name of the placeholder in the Template.
For example, when the Param name is 'myParam' there ought to be a placeholder called '#myParam#' present
in the Template definition.
public function get name():String
public function set name(value:String):void
See also
| value | property |
value:* [read-write]
The value that will be used for placeholder substitution in the Template definition.
public function get value():*
public function set value(value:*):void
See also
| Param | () | constructor |
public function Param()
Creates a new Param instance
| clone | () | method |
public override function clone():*Returns
* |