Packageorg.spicefactory.parsley.asconfig.metadata
Classpublic class ObjectDefinitionMetadata
InheritanceObjectDefinitionMetadata Inheritance Object

Represents a metadata tag that can be used to specify additional configuration for object definitions in an ActionScript configuration class.



Public Properties
 PropertyDefined By
  id : String
The id the object should be registered with.
ObjectDefinitionMetadata
  lazy : Boolean = false
Indicates whether this object should be lazily initialized.
ObjectDefinitionMetadata
  order : int = 2.147483647E9
The processing order for this object.
ObjectDefinitionMetadata
Property Detail
idproperty
public var id:String

The id the object should be registered with.

lazyproperty 
public var lazy:Boolean = false

Indicates whether this object should be lazily initialized. If set to false the object will be instantiated upon Context initialization.

orderproperty 
public var order:int = 2.147483647E9

The processing order for this object. Only has an effect for non-lazy singletons. Those are instantiated when the Context initializes and this property allows to determine the initialization order of these singletons. Will be processed in ascending order.