| Pakiet | mx.messaging.config |
| Klasa | public dynamic class ConfigMap |
| Dziedziczenie | ConfigMap Proxy |
| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
| Właściwość | Zdefiniowane przez | ||
|---|---|---|---|
| propertyList : Array
Contains a list of all of the property names for the proxied object. | ConfigMap | ||
| Metoda | Zdefiniowane przez | ||
|---|---|---|---|
[przesłanianie]
Returns the value of the proxied object's method with the specified name. | ConfigMap | ||
[przesłanianie]
Deletes the specified property on the proxied object and
sends notification of the delete to the handler. | ConfigMap | ||
[przesłanianie]
Returns the specified property value of the proxied object. | ConfigMap | ||
[przesłanianie]
This is an internal function that must be implemented by
a subclass of flash.utils.Proxy. | ConfigMap | ||
[przesłanianie]
This is an internal function that must be implemented by
a subclass of flash.utils.Proxy. | ConfigMap | ||
[przesłanianie]
This is an internal function that must be implemented by
a subclass of flash.utils.Proxy. | ConfigMap | ||
[przesłanianie]
This is an internal function that must be implemented by
a subclass of flash.utils.Proxy. | ConfigMap | ||
[przesłanianie]
Updates the specified property on the proxied object
and sends notification of the update to the handler. | ConfigMap | ||
propertyList | właściwość |
object_proxy var propertyList:Array| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Contains a list of all of the property names for the proxied object.
ConfigMap | () | Konstruktor |
public function ConfigMap(item:Object = null)| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructor.
Parametryitem:Object (default = null) — An Object containing name/value pairs.
|
callProperty | () | metoda |
override flash_proxy function callProperty(name:*, ... rest):*| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the value of the proxied object's method with the specified name.
Parametry
name:* — The name of the method being invoked.
| |
... rest — An array specifying the arguments to the
called method.
|
* — The return value of the called method.
|
deleteProperty | () | metoda |
override flash_proxy function deleteProperty(name:*):Boolean| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Deletes the specified property on the proxied object and sends notification of the delete to the handler.
Parametry
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.
|
Boolean — A Boolean indicating if the property was deleted.
|
getProperty | () | metoda |
override flash_proxy function getProperty(name:*):*| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the specified property value of the proxied object.
Parametry
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.
|
* — The value of the property.
|
hasProperty | () | metoda |
override flash_proxy function hasProperty(name:*):Boolean| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametry
name:* — The property name that should be tested
for existence.
|
Boolean — If the property exists, true;
otherwise false.
|
Powiązane elementy interfejsu API
nextName | () | metoda |
override flash_proxy function nextName(index:int):String| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametry
index:int — The zero-based index of the object's
property.
|
String — The property's name.
|
Powiązane elementy interfejsu API
nextNameIndex | () | metoda |
override flash_proxy function nextNameIndex(index:int):int| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametry
index:int — The zero-based index of the object's
property.
|
int — The zero-based index of the next proprety.
|
Powiązane elementy interfejsu API
nextValue | () | metoda |
override flash_proxy function nextValue(index:int):*| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametry
index:int — The zero-based index value of the object's
property.
|
* — The property's value.
|
Powiązane elementy interfejsu API
setProperty | () | metoda |
override flash_proxy function setProperty(name:*, value:*):void| Wersja języka: | ActionScript 3.0 |
| Wersje produktu: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Updates the specified property on the proxied object and sends notification of the update to the handler.
Parametry
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.
|
Tue Jun 12 2018, 12:06 PM Z