패키지 | com.adobe.guides.control |
인터페이스 | public interface IGuideData |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
런타임 버전: | AIR 1.0, Flash Player 10.2 |
속성 | 정의 주체 | ||
---|---|---|---|
dataSource : Object
Returns the dataSource object provided. | IGuideData | ||
submitRequestTimestamp : Date [읽기 전용]
Returns the timestamp of the most recent submit request. | IGuideData |
메서드 | 정의 주체 | ||
---|---|---|---|
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 | 속성 |
dataSource:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
런타임 버전: | 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.
구현
public function get dataSource():Object
public function set dataSource(value:Object):void
submitRequestTimestamp | 속성 |
submitRequestTimestamp:Date
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
런타임 버전: | AIR 1.0, Flash Player 10.2 |
Returns the timestamp of the most recent submit request.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 propertyChange
이벤트를 전달합니다.
구현
public function get submitRequestTimestamp():Date
getData | () | 메서드 |
public function getData(type:String = "xml"):Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
런타임 버전: | 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).
매개 변수
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 | () | 메서드 |
public function getValue(dataReference:String):*
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
런타임 버전: | 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.
매개 변수
dataReference:String — the fully defined reference in dot notation of the DataModel object. eg. "Clients.Client.Address.State"
|
* —
|
setValue | () | 메서드 |
public function setValue(dataReference:String, value:*):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 10 |
런타임 버전: | 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.
매개 변수
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, 03:17 PM Z