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
 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
  
[override] Creates a new instance of the generator class, with the properties specified by properties.
ContextualClassFactory
Property Detail
moduleFactoryproperty
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.