Pacote | com.adobe.icomm.assetplacement.controller |
Classe | public class XMLDataLoader |
Herança | XMLDataLoader EventDispatcher Object |
Implementações | IMXMLObject, IPackageObject |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
id
.
If autoLoad
is true, then whenever the id
property is changed, the data linked
to the new id will be loaded. If autoLoad
is false, then an explicit call to loadData() must
be made to load the package XML resource. Once the XML data is loaded and ready to use, an XmlDataReadyEvent
is dispatched.
Propriedade | Definido por | ||
---|---|---|---|
autoLoad : Boolean
A flag that indictes whether content starts loading automatically when the id
is set or waits for a call to the loadData() method. | XMLDataLoader | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
id : String
The id of this object, which is used to link up to the controller attribute
in the assets section of the package definition file. | XMLDataLoader | ||
packageAttachments : IList [somente leitura]
A list of Attachment objects who's controller id attribute matches the
id of this object. | XMLDataLoader | ||
packageController : Controller [somente leitura]
The controller object who's id matches the id of this object. | XMLDataLoader | ||
packageResource : Resource [somente leitura]
The current Resource object who's controller id attribute matches the
id of this object. | XMLDataLoader | ||
packageResources : IList [somente leitura]
A list of Resource objects who's controller id attribute matches the
id of this object. | XMLDataLoader |
Método | Definido por | ||
---|---|---|---|
XMLDataLoader(id:String = "")
Constructor. | XMLDataLoader | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
This method loads the XML data associated to the id property in the package
definition file. | XMLDataLoader | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched when new content is loaded after calling loadData() or when changing the id property, if autoLoad is set to true. | XMLDataLoader |
autoLoad | propriedade |
autoLoad:Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
A flag that indictes whether content starts loading automatically when the id
is set or waits for a call to the loadData()
method.
If true
, the content loads automatically.
If false
, you must call the loadData()
method.
O valor padrão é true.
Implementação
public function get autoLoad():Boolean
public function set autoLoad(value:Boolean):void
id | propriedade |
id:String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
The id of this object, which is used to link up to the controller
attribute
in the assets section of the package definition file.
Implementação
public function get id():String
public function set id(value:String):void
packageAttachments | propriedade |
packageAttachments:IList
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
A list of Attachment
objects who's controller
id
attribute matches the
id
of this object.
Implementação
public function get packageAttachments():IList
packageController | propriedade |
packageController:Controller
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
The controller object who's id
matches the id
of this object.
Implementação
public function get packageController():Controller
packageResource | propriedade |
packageResource:Resource
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
The current Resource
object who's controller
id
attribute matches the
id
of this object.
Implementação
public function get packageResource():Resource
packageResources | propriedade |
packageResources:IList
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
A list of Resource
objects who's controller
id
attribute matches the
id
of this object.
Implementação
public function get packageResources():IList
XMLDataLoader | () | Construtor |
loadData | () | método |
public function loadData():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
This method loads the XML data associated to the id
property in the package
definition file. When the data is ready for use, an xmlDataReady event is dispatched. The event
contains the data.
Elementos da API relacionados
xmlDataReady | Evento |
com.adobe.icomm.assetplacement.controller.XMLDataReadyEvent
propriedade XMLDataReadyEvent.type =
com.adobe.icomm.assetplacement.controller.XMLDataReadyEvent.XML_DATA_READY
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Placement Building Block 9.5 |
Versões de runtime: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when new content is loaded after calling loadData()
or when changing the id
property, if autoLoad
is set to true.
public function foo():void { var xmlDataLoader:XMLDataLoader = new XMLDataLoader(); xmlDataLoader.autoLoad = false; xmlDataLoader.id = "data"; xmlDataLoader.addEventListener(XMLDataReadyEvent.XML_DATA_READY, xmlDataReadyHandler); xmlDataLoader.loadData(); } private function xmlDataReadyHandler(event:XMLDataReadyEvent):void { var root:XML = event.data; // Do stuff with the XML... }
The XMLDataLoader can also be used in MXML:
<mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:ap="http://ns.adobe.com/livecycle/icomm/assetplacement"> <mx:Script> <![CDATA[ // Called when XMLDataLoader loads data private function onXMLDataReady(event:XMLDataReadyEvent):void { var info:XML = event.data; StatementDataText.data = info.PhoneBill; } ]]> </mx:Script> <ap:XMLDataLoader id="data" xmlDataReady="onXMLDataReady(event)"/> </mx:Module>
Wed Jun 13 2018, 11:10 AM Z