Pacote | mx.core |
Classe | public class ContextualClassFactory |
Herança | ContextualClassFactory ClassFactory Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | 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 |
Método | Definido por | ||
---|---|---|---|
Constructor. | ContextualClassFactory | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
newInstance():* [substituir]
Creates a new instance of the generator class,
with the properties specified by properties. | ContextualClassFactory | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
moduleFactory | propriedade |
public var moduleFactory:IFlexModuleFactory
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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
.
O valor padrão é null.
ContextualClassFactory | () | Construtor |
public function ContextualClassFactory(generator:Class = null, moduleFactory:IFlexModuleFactory = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parâmetrosgenerator: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 | () | método |
override public function newInstance():*
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
|
Wed Jun 13 2018, 11:10 AM Z