Pacotemx.messaging.config
Classepublic dynamic class ConfigMap
HerançaConfigMap Inheritance Proxy Inheritance Object

The ConfigMap class provides a mechanism to store the properties returned by the server with the ordering of the properties maintained.



Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Propriedades Protegidas
 PropriedadeDefinido por
  propertyList : Array
Contains a list of all of the property names for the proxied object.
ConfigMap
Métodos Públicos
 MétodoDefinido por
  
ConfigMap(item:Object = null)
ConfigMap
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Métodos Protegidos
 MétodoDefinido por
  
callProperty(name:*, ... rest):*
Returns the value of the proxied object's method with the specified name.
ConfigMap
  
Deletes the specified property on the proxied object and sends notification of the delete to the handler.
ConfigMap
  
getProperty(name:*):*
Returns the specified property value of the proxied object.
ConfigMap
  
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
ConfigMap
  
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
ConfigMap
  
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
ConfigMap
  
nextValue(index:int):*
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
ConfigMap
  
setProperty(name:*, value:*):void
Updates the specified property on the proxied object and sends notification of the update to the handler.
ConfigMap
Detalhes da propriedade
propertyListpropriedade
object_proxy var propertyList:Array

Contains a list of all of the property names for the proxied object.

Detalhes do construtor
ConfigMap()Construtor
public function ConfigMap(item:Object = null) Parâmetros
item:Object (default = null)
Detalhes do método
callProperty()método
flash_proxy override function callProperty(name:*, ... rest):*

Returns the value of the proxied object's method with the specified name.

Parâmetros

name:* — The name of the method being invoked.
 
... rest — An array specifying the arguments to the called method.

Retorna
* — The return value of the called method.
deleteProperty()método 
flash_proxy override function deleteProperty(name:*):Boolean

Deletes the specified property on the proxied object and sends notification of the delete to the handler.

Parâmetros

name:* — Typically a string containing the name of the property, or possibly a QName where the property name is found by inspecting the localName property.

Retorna
Boolean — A Boolean indicating if the property was deleted.
getProperty()método 
flash_proxy override function getProperty(name:*):*

Returns the specified property value of the proxied object.

Parâmetros

name:* — Typically a string containing the name of the property, or possibly a QName where the property name is found by inspecting the localName property.

Retorna
* — The value of the property.
hasProperty()método 
flash_proxy override function hasProperty(name:*):Boolean

This is an internal function that must be implemented by a subclass of flash.utils.Proxy.

Parâmetros

name:* — The property name that should be tested for existence.

Retorna
Boolean

Veja também

nextName()método 
flash_proxy override function nextName(index:int):String

This is an internal function that must be implemented by a subclass of flash.utils.Proxy.

Parâmetros

index:int

Retorna
String

Veja também

nextNameIndex()método 
flash_proxy override function nextNameIndex(index:int):int

This is an internal function that must be implemented by a subclass of flash.utils.Proxy.

Parâmetros

index:int

Retorna
int

Veja também

nextValue()método 
flash_proxy override function nextValue(index:int):*

This is an internal function that must be implemented by a subclass of flash.utils.Proxy.

Parâmetros

index:int

Retorna
*

Veja também

setProperty()método 
flash_proxy override function setProperty(name:*, value:*):void

Updates the specified property on the proxied object and sends notification of the update to the handler.

Parâmetros

name:* — Object containing the name of the property that should be updated on the proxied object.
 
value:* — Value that should be set on the proxied object.