Pacchetto | mx.core |
Classe | public class ContextualClassFactory |
Ereditarietà | ContextualClassFactory ClassFactory Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | 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 |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | ContextualClassFactory | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
newInstance():* [override]
Creates a new instance of the generator class,
with the properties specified by properties. | ContextualClassFactory | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
moduleFactory | proprietà |
public var moduleFactory:IFlexModuleFactory
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | 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
.
Il valore predefinito è null.
ContextualClassFactory | () | Funzione di costruzione |
public function ContextualClassFactory(generator:Class = null, moduleFactory:IFlexModuleFactory = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parametrigenerator: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 | () | metodo |
override public function newInstance():*
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | 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.
|
Tue Jun 12 2018, 02:44 PM Z