| Package | mx.core | 
| Class | public class ContextualClassFactory | 
| Inheritance | ContextualClassFactory    ClassFactory   Object | 
| Property | Defined By | ||
|---|---|---|---|
![]()  | constructor : Object
 
  A reference to the class object or constructor function for a given object instance. 
 | Object | |
![]()  | generator : 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 | ||
![]()  | properties : Object = null 
  An Object whose name/value pairs specify the properties to be set
   on each object generated by the newInstance() method. 
 | ClassFactory | |
![]()  | prototype : Object
 [static] 
  A reference to the prototype object of a class or function object. 
 | Object | |
| Method | Defined By | ||
|---|---|---|---|
| 
 
   Constructor. 
 | ContextualClassFactory | ||
![]()  | 
 
  Indicates whether an object has a specified property defined. 
 | Object | |
![]()  | 
 
  Indicates whether an instance of the Object class is in the prototype chain of the object specified 
  as the parameter. 
 | Object | |
| 
 
newInstance():*
 
   Creates a new instance of the generator class,
   with the properties specified by properties. 
 | ContextualClassFactory | ||
![]()  | 
 
  Indicates whether the specified property exists and is enumerable. 
 | Object | |
![]()  | 
 
     Sets the availability of a dynamic property for loop operations. 
 | Object | |
![]()  | 
 
  Returns the string representation of the specified object. 
 | Object | |
![]()  | 
 
  Returns the primitive value of the specified object. 
 | Object | |
| moduleFactory | property | 
public var moduleFactory:IFlexModuleFactory
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.
| ContextualClassFactory | () | Constructor | 
public function ContextualClassFactory(generator:Class = null, moduleFactory:IFlexModuleFactory = null)
Constructor.
Parametersgenerator: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.
   | 
| newInstance | () | method | 
public override function newInstance():*
   Creates a new instance of the generator class,
   with the properties specified by properties.
     
This method implements the newInstance() method
   of the IFactory interface.
* — The new instance that was created.
   |