パッケージ | com.adobe.dct.model |
クラス | public class DEPDictionaryModel |
継承 | DEPDictionaryModel EventDispatcher Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
DEPDictionaryModel
class represents the domain object for the assets of type DataDictionary
which is used as data provider for DataElementsPanel.
Domain objects can be leveraged to build presentation on top of them. They ease the
process of coding views by abstracting all the service calls and maintaining meaningful
states.
パブリックプロパティ
プロパティ | 定義元 | ||
---|---|---|---|
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
description : String
The description of the DEPDictionaryModel. | DEPDictionaryModel | ||
name : String
Gets the unique name of the Data Dictionary. | DEPDictionaryModel | ||
rootDataElement : DataElementModel
The root DataElementModel within the data dictionary. | DEPDictionaryModel | ||
type : String
Gets the TYPE of the Data Dictionary. | DEPDictionaryModel | ||
vo : DataDictionary
The underlying Data Dictionary value object. | DEPDictionaryModel |
パブリックメソッド
メソッド | 定義元 | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
イベントリスナーオブジェクトを EventDispatcher オブジェクトに登録し、リスナーがイベントの通知を受け取るようにします。 | EventDispatcher | ||
[静的]
Creates the domain object from the corresponding value object. | DEPDictionaryModel | ||
イベントをイベントフローに送出します。 | EventDispatcher | ||
EventDispatcher オブジェクトに、特定のイベントタイプに対して登録されたリスナーがあるかどうかを確認します。 | EventDispatcher | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
EventDispatcher オブジェクトからリスナーを削除します。 | EventDispatcher | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object | ||
指定されたイベントタイプについて、この EventDispatcher オブジェクトまたはその祖先にイベントリスナーが登録されているかどうかを確認します。 | EventDispatcher |
パブリック定数
定数 | 定義元 | ||
---|---|---|---|
TYPE_PERSISTENT : String = "PERSISTENT" [静的]
The constant corresponding to the persistent data dictionary. | DEPDictionaryModel | ||
TYPE_TRANSIENT : String = "TRANSIENT" [静的]
The constant corresponding to the placeholder DD. | DEPDictionaryModel |
プロパティの詳細
description | プロパティ |
description:String
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
The description of the DEPDictionaryModel.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 propertyChange
イベントが送出されます。
実装
public function get description():String
public function set description(value:String):void
name | プロパティ |
rootDataElement | プロパティ |
rootDataElement:DataElementModel
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
The root DataElementModel within the data dictionary.
実装
public function get rootDataElement():DataElementModel
public function set rootDataElement(value:DataElementModel):void
関連する API エレメント
type | プロパティ |
vo | プロパティ |
vo:DataDictionary
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
The underlying Data Dictionary value object.
実装
public function get vo():DataDictionary
public function set vo(value:DataDictionary):void
メソッドの詳細
createFromVO | () | メソッド |
public static function createFromVO(dataDictionaryVO:DataDictionary):DEPDictionaryModel
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Creates the domain object from the corresponding value object.
Value Objects are pure data entities mostly acting as parameters to the server apis. Domain objects are build atop to provide more meaningful business data and behavior thereby enabling faster and convenient UI view development.
パラメーター
dataDictionaryVO:DataDictionary — The value object of the type Category
|
DEPDictionaryModel — The Category domain object corresponding the passed Category value object.
|
定数の詳細
TYPE_PERSISTENT | 定数 |
public static const TYPE_PERSISTENT:String = "PERSISTENT"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
The constant corresponding to the persistent data dictionary.
TYPE_TRANSIENT | 定数 |
public static const TYPE_TRANSIENT:String = "TRANSIENT"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
The constant corresponding to the placeholder DD.
Tue Jun 12 2018, 10:34 AM Z