Pacote | mx.core |
Classe | public class DeferredInstanceFromFunction |
Herança | DeferredInstanceFromFunction Object |
Implementações | ITransientDeferredInstance |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
getInstance()
method to
create an instance of an object when it is first needed and get
a reference to the object thereafter.
Elementos da API relacionados
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructor. | DeferredInstanceFromFunction | ||
Returns a reference to an instance of the desired object. | DeferredInstanceFromFunction | ||
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 | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Resets the state of our factory to the initial, uninitialized state. | DeferredInstanceFromFunction | ||
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 |
Detalhes do construtor
DeferredInstanceFromFunction | () | Construtor |
public function DeferredInstanceFromFunction(generator:Function, destructor:Function = 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:Function — A function that creates and returns an instance
of the required object.
| |
destructor:Function (default = null ) — An optional function used to cleanup outstanding
references when reset() is called.
|
Detalhes do método
getInstance | () | método |
public function getInstance():Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns a reference to an instance of the desired object.
If no instance of the required object exists, calls the function
specified in this class' generator
constructor parameter.
Object — An instance of the object.
|
reset | () | método |
public function reset():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Resets the state of our factory to the initial, uninitialized state. The reference to our cached instance is cleared.
Wed Jun 13 2018, 11:10 AM Z