Paquete | com.adobe.icc.editors.events |
Clase | public class AssetValidationEvent |
Herencia | AssetValidationEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 9.5 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
This event is dispatched by various asset domain classes when the
validate()
method has been invoked on them. This event
encapsulates the result of the client side validations performed on the
domain object the validate()
api was called for.
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | ||
data : *
The data is an arbitrary value associated with the type of fault
and varies from case to case. | AssetValidationEvent | ||
eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | ||
faultType : int
The faultType corresponds to one of the constants defined in
the class AssetValidationFaultType. | AssetValidationEvent | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
type : String [solo lectura]
El tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
Constructor. | AssetValidationEvent | ||
Duplica una instancia de la subclase Event. | Event | ||
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Comprueba si se ha llamado a preventDefault() en el evento. | Event | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | ||
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
INVALID : String = "invalid" [estática]
The AssetValidationEvent.INVALID constant defines the value of the
type property of the event object for a invalid event. | AssetValidationEvent | ||
VALID : String = "valid" [estática]
The AssetValidationEvent.VALID constant defines the value of the
type property of the event object for a valid event. | AssetValidationEvent |
data | propiedad |
public var data:*
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 9.5 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
The data
is an arbitrary value associated with the type of fault
and varies from case to case. The following table illustrates the association
between fault codes and the related data:
Fault Code | Data |
---|---|
AssetValidationFaultType.INCOMPATIBLE_DATADICTIONARY | Array of assets dependent upon the target asset |
invalid
event type. For the
case of valid
event type, this property must be ignored.
Elementos de API relacionados
faultType | propiedad |
public var faultType:int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 9.5 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
The faultType
corresponds to one of the constants defined in
the class AssetValidationFaultType
.
invalid
event type. For the
case of valid
event type, this property must be ignored.
Elementos de API relacionados
AssetValidationEvent | () | Información sobre |
public function AssetValidationEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 9.5 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Constructor.
Parámetrostype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up
the display list hierarchy.
| |
cancelable:Boolean (default = false ) — Specifies whether the behavior
associated with the event can be prevented.
|
INVALID | Constante |
public static const INVALID:String = "invalid"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 9.5 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
The AssetValidationEvent.INVALID
constant defines the value of the
type
property of the event object for a invalid
event.
The invalid
event is dispatched when the validations executed
on the domain object fail for some reason. The validations are run implicitly when
the domain object is saved or explicitly when the validate()
method
is invoked on a domain object like TextModel, ListModel etc.
When this event is dispatched, the properties faultType
and
data
contain meaningful values and can be read to find out the
reason for failure and any data associated.
VALID | Constante |
public static const VALID:String = "valid"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 9.5 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
The AssetValidationEvent.VALID
constant defines the value of the
type
property of the event object for a valid
event.
The valid
event is dispatched when the validations executed
on the domain object are successful. The validations are run implicitly when
the domain object is saved or explicitly when the validate()
method
is invoked on a domain object like TextModel, ListModel etc.
Tue Jun 12 2018, 02:12 PM Z