Referencia de ActionScript® 3.0 para la plataforma de Adobe® Flash®
Inicio  |  Ocultar lista de paquetes y clases |  Paquetes  |  Clases  |  Novedades  |  Índice  |  Apéndices  |  ¿Por qué hay texto en inglés?
Filtros: Recuperando datos del servidor...
Recuperando datos del servidor...
mx.data 

PropertySpecifier  - AS3 ADEP Data Services

Paquetemx.data
Clasepublic class PropertySpecifier
HerenciaPropertySpecifier Inheritance Object

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

This class specifies which properties should be included for a specific findItem or fill call.



Propiedades públicas
 PropiedadDefinido por
 Inheritedconstructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada.
Object
  excludes : Array
[solo lectura] Get a list of properties to exclude, or null if no properties are excluded.
PropertySpecifier
  extraProperties : Array
A list of additional properties to include.
PropertySpecifier
  includeMode : int
The mode of this PropertySpecifier, determining what properties should be included.
PropertySpecifier
  includeSpecifierString : String
[solo lectura] Returns the value for DSincludeSpec.
PropertySpecifier
Métodos públicos
 MétodoDefinido por
  
PropertySpecifier(dest:ConcreteDataService, mode:int, extra:Array)
Constructor.
PropertySpecifier
  
Get an array of names of excluded properties for the object.
PropertySpecifier
  
getIncluded(destination:String):Array
Get an array of names of included properties for this destination.
PropertySpecifier
  
Obtain the specifier for an associated destination.
PropertySpecifier
 Inherited
Indica si un objeto tiene definida una propiedad especificada.
Object
  
Check if the given property should be included based on this specifier.
PropertySpecifier
 Inherited
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro.
Object
 Inherited
Indica si existe la propiedad especificada y si es enumerable.
Object
 Inherited
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle.
Object
 Inherited
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional.
Object
  
Returns the string representation of the specified object.
PropertySpecifier
 Inherited
Devuelve el valor simple del objeto especificado.
Object
Constantes públicas
 ConstanteDefinido por
  ALL : PropertySpecifier
[estática] Reusable instance of a PropertySpecifier to include all properties of an item.
PropertySpecifier
  DEFAULT : PropertySpecifier
[estática] Reusable instance of a default PropertySpecifier.
PropertySpecifier
  EMPTY : PropertySpecifier
[estática] Reusable instance of a PropertySpecifier to include no properties.
PropertySpecifier
  INCLUDE_ALL : int = 1
[estática] Special value for a PropertySpecifier mode to include all properties of an item.
PropertySpecifier
  INCLUDE_DEFAULT : int = 0
[estática] Special value for a PropertySpecifier mode to include properties based on the default configuration.
PropertySpecifier
  INCLUDE_DEFAULT_PLUS_LIST : int = 2
[estática] Special value for a PropertySpecifier mode to include properties based on the default configuration, as well as additional properties specified in a list.
PropertySpecifier
  INCLUDE_LIST : int = 3
[estática] Special value for a PropertySpecifier mode to include only properties specified in a list.
PropertySpecifier
Información sobre propiedades

excludes

propiedad
excludes:Array  [solo lectura]

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Get a list of properties to exclude, or null if no properties are excluded.



Implementación
    public function get excludes():Array

extraProperties

propiedad 
extraProperties:Array

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

A list of additional properties to include.



Implementación
    public function get extraProperties():Array
    public function set extraProperties(value:Array):void

includeMode

propiedad 
includeMode:int

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

The mode of this PropertySpecifier, determining what properties should be included.



Implementación
    public function get includeMode():int
    public function set includeMode(value:int):void

includeSpecifierString

propiedad 
includeSpecifierString:String  [solo lectura]

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Returns the value for DSincludeSpec.



Implementación
    public function get includeSpecifierString():String
Información sobre constructores

PropertySpecifier

()Información sobre
public function PropertySpecifier(dest:ConcreteDataService, mode:int, extra:Array)

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Constructor.

Parámetros
dest:ConcreteDataService — destination for which this property specifier should apply.
 
mode:int — mode of property specifier. Must be one of these values: 0 (INCLUDE_DEFAULT) 1 (INCLUDE_ALL) 2 (INCLUDE_DEFAULT_PLUS_LIST) 3 (INCLUDE_LIST)
 
extra:Array — array of additional property names to include in mode 2 and 3.
Información sobre métodos

getExcluded

()método
public function getExcluded(item:Object):Array

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Get an array of names of excluded properties for the object.

Parámetros

item:Object — the item instance.

Valor devuelto
Array — an array of excluded property names or null if no properties should be excluded.

getIncluded

()método 
public function getIncluded(destination:String):Array

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Get an array of names of included properties for this destination.

Parámetros

destination:String — the destination name.

Valor devuelto
Array — an array of included property names.

getSubSpecifier

()método 
public function getSubSpecifier(item:Object, propName:String):PropertySpecifier

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Obtain the specifier for an associated destination.

Parámetros

item:Object — item instance.
 
propName:String — property name for the association.

Valor devuelto
PropertySpecifier — the PropertySpecifier instance to use when fetching data for the association.

includeProperty

()método 
public function includeProperty(propName:String):Boolean

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Check if the given property should be included based on this specifier.

Parámetros

propName:String — name of property.

Valor devuelto
Boolean — true if property should be included in the result.

toString

()método 
public function toString():String

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Returns the string representation of the specified object.

Note: Methods of the Object class are dynamically created on Object's prototype. To redefine this method in a subclass of Object, do not use the override keyword. For example, a subclass of Object implements function toString():String instead of using an override of the base class.

Valor devuelto
String — A string representation of the object.
Información sobre constantes

ALL

Constante
public static const ALL:PropertySpecifier

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Reusable instance of a PropertySpecifier to include all properties of an item.

DEFAULT

Constante 
public static const DEFAULT:PropertySpecifier

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Reusable instance of a default PropertySpecifier.

EMPTY

Constante 
public static const EMPTY:PropertySpecifier

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Reusable instance of a PropertySpecifier to include no properties.

INCLUDE_ALL

Constante 
public static const INCLUDE_ALL:int = 1

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Special value for a PropertySpecifier mode to include all properties of an item.

INCLUDE_DEFAULT

Constante 
public static const INCLUDE_DEFAULT:int = 0

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Special value for a PropertySpecifier mode to include properties based on the default configuration.

INCLUDE_DEFAULT_PLUS_LIST

Constante 
public static const INCLUDE_DEFAULT_PLUS_LIST:int = 2

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Special value for a PropertySpecifier mode to include properties based on the default configuration, as well as additional properties specified in a list.

INCLUDE_LIST

Constante 
public static const INCLUDE_LIST:int = 3

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Special value for a PropertySpecifier mode to include only properties specified in a list.





[ X ]¿Por qué hay texto en inglés?
Cierto contenido de la Referencia de ActionScript 3.0 se muestra en inglés

No todo el contenido de la Referencia de ActionScript 3.0 se traduce a todos los idiomas. Si un elemento del lenguaje no se traduce, aparecerá en inglés. Por ejemplo, la clase ga.controls.HelpBox no está traducida en ningún idioma. Por lo tanto, en la versión en español de la referencia, la clase ga.controls.HelpBox aparecerá en inglés.