Paquete | com.adobe.guides.control |
Interfaz | public interface IGuideData |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
Versiones de motor de ejecución: | AIR 1.0, Flash Player 10.2 |
Propiedad | Definido por | ||
---|---|---|---|
dataSource : Object
Returns the dataSource object provided. | IGuideData | ||
submitRequestTimestamp : Date [solo lectura]
Returns the timestamp of the most recent submit request. | IGuideData |
Método | Definido por | ||
---|---|---|---|
The getData(type) method returns the data as an XML Object(default), or an Entity object if given type='entity'. | IGuideData | ||
The getValue(dataReference) method returns the data value from the model item referenced as the model's object type. | IGuideData | ||
The setValue(dataReference, value) method updates the model item data referenced with the provided value. | IGuideData |
dataSource | propiedad |
dataSource:Object
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
Versiones de motor de ejecución: | AIR 1.0, Flash Player 10.2 |
Returns the dataSource object provided. Sets and loads the given data. Can be any of XML, xml String, url or Entity object.
Implementación
public function get dataSource():Object
public function set dataSource(value:Object):void
submitRequestTimestamp | propiedad |
submitRequestTimestamp:Date
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
Versiones de motor de ejecución: | AIR 1.0, Flash Player 10.2 |
Returns the timestamp of the most recent submit request.
Esta propiedad se puede utilizar como origen para la vinculación de datos. Cuando se modifica esta propiedad, distribuye el evento propertyChange
.
Implementación
public function get submitRequestTimestamp():Date
getData | () | método |
public function getData(type:String = "xml"):Object
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
Versiones de motor de ejecución: | AIR 1.0, Flash Player 10.2 |
The getData(type) method returns the data as an XML Object(default), or an Entity object if given type='entity'. ("entity" returns Fiber or XFA instance actionscript class).
Parámetros
type:String (default = "xml ") — the format to retreive the data in, default is "xml".
"draft" returns an XML file that includes state information. Loading that xml later will return the guide to the state at that time.
"entity" returns the DataModeler Entity valueObject.
|
Object — Object
|
getValue | () | método |
public function getValue(dataReference:String):*
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
Versiones de motor de ejecución: | AIR 1.0, Flash Player 10.2 |
The getValue(dataReference) method returns the data value from the model item referenced as the model's object type. Throws an exception if dataRef does not exist.
Parámetros
dataReference:String — the fully defined reference in dot notation of the DataModel object. eg. "Clients.Client.Address.State"
|
* —
|
setValue | () | método |
public function setValue(dataReference:String, value:*):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
Versiones de motor de ejecución: | AIR 1.0, Flash Player 10.2 |
The setValue(dataReference, value) method updates the model item data referenced with the provided value. Throws an exception if dataRef does not exist or an incompatible value type is passed.
Parámetros
dataReference:String — the fully defined reference in dot notation of the DataModel object. eg. "Clients.Client.Address.State"
| |
value:* — the data value to assign to the DataModel object.
|
Tue Jun 12 2018, 02:12 PM Z