Packageorg.springextensions.actionscript.context.support.mxml
SVN browsingParam.as
FisheyeParam.as
Classpublic class Param
InheritanceParam Inheritance AbstractMXMLObject

MXML representation of an 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

ObjectDefinition
Template


Documentation reference: composing mxml based configuration metadata


Public Properties
 PropertyDefined by
 Inheriteddocument : Object
The MXML document that created this object.
AbstractMXMLObject
 Inheritedid : String
The identifier used by document to refer to this object.
AbstractMXMLObject
 InheritedisInitialized : 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
Protected Properties
 PropertyDefined by
 Inherited_isInitialized : Boolean = false
AbstractMXMLObject
Public Methods
 MethodDefined by
  
Creates a new Param instance
Param
  
clone():*
Param
 Inherited
AbstractMXMLObject
 Inherited
initialized(document:Object, id:String):void
AbstractMXMLObject
Protected Methods
 MethodDefined by
 Inherited
AbstractMXMLObject
Property detail
nameproperty
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.

Implementation
    public function get name():String
    public function set name(value:String):void

See also

valueproperty 
value:*  [read-write]

The value that will be used for placeholder substitution in the Template definition.

Implementation
    public function get value():*
    public function set value(value:*):void

See also

Constructor detail
Param()constructor
public function Param()

Creates a new Param instance

Method detail
clone()method
public override function clone():*

Returns
*