ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
mx.core 

ContextualClassFactory  - AS3 Flex

Packagemx.core
Classpublic class ContextualClassFactory
InheritanceContextualClassFactory Inheritance ClassFactory Inheritance Object

Language Version: ActionScript 3.0
Product Version: Flex 3
Runtime Versions: Flash Player 9, AIR 1.1

A class factory that provides a system manager as a context of where the class should be created.



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedgenerator : Class
The Class that the newInstance() method uses to generate objects from this factory object.
ClassFactory
  moduleFactory : IFlexModuleFactory
The context in which an object should be created.
ContextualClassFactory
 Inheritedproperties : Object = null
An Object whose name/value pairs specify the properties to be set on each object generated by the newInstance() method.
ClassFactory
Public Methods
 MethodDefined By
  
ContextualClassFactory(generator:Class = null, moduleFactory:IFlexModuleFactory = null)
Constructor.
ContextualClassFactory
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
  
[override] Creates a new instance of the generator class, with the properties specified by properties.
ContextualClassFactory
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Property Detail

moduleFactory

property
public var moduleFactory:IFlexModuleFactory

Language Version: ActionScript 3.0
Product Version: Flex 3
Runtime Versions: Flash Player 9, AIR 1.1

The context in which an object should be created.

This is used to solve using the embedded fonts in an application SWF when the framework is loaded as an RSL (the RSL has its own SWF context). Embedded fonts may only be accessed from the SWF file context in which they were created. By using the systemManager of the application SWF, the RSL can create objects in the application SWF context that will have access to the application's embedded fonts. moduleFactory will call create() to create an object in the context of the moduleFactory.

The default value is null.

Constructor Detail

ContextualClassFactory

()Constructor
public function ContextualClassFactory(generator:Class = null, moduleFactory:IFlexModuleFactory = null)

Language Version: ActionScript 3.0
Product Version: Flex 3
Runtime Versions: Flash Player 9, AIR 1.1

Constructor.

Parameters
generator:Class (default = null) — The Class that the newInstance() method uses to generate objects from this factory object.
 
moduleFactory:IFlexModuleFactory (default = null) — The system manager context in which the object should be created.
Method Detail

newInstance

()method
override public function newInstance():*

Language Version: ActionScript 3.0
Product Version: Flex 3
Runtime Versions: Flash Player 9, AIR 1.1

Creates a new instance of the generator class, with the properties specified by properties.

This method implements the newInstance() method of the IFactory interface.

Returns
* — The new instance that was created.