Package | mx.core |
Class | public class ContextualClassFactory |
Inheritance | ContextualClassFactory ClassFactory Object |
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Property | Defined By | ||
---|---|---|---|
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 |
Method | Defined By | ||
---|---|---|---|
ContextualClassFactory(generator:Class = null, moduleFactory:IFlexModuleFactory = null)
Constructor. | ContextualClassFactory | ||
newInstance():* [override]
Creates a new instance of the generator class,
with the properties specified by properties. | ContextualClassFactory |
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
.
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.
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 |
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.
* — The new instance that was created.
|