パッケージ | com.adobe.dct.exp |
クラス | public class DDIModelVariableResolver |
継承 | DDIModelVariableResolver EventDispatcher Object |
実装 | IVariableResolver |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
パブリックプロパティ
プロパティ | 定義元 | ||
---|---|---|---|
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
dataDictionaryInstanceModelList : IList
The underlying list of data dictionary instance models. | DDIModelVariableResolver |
パブリックメソッド
メソッド | 定義元 | ||
---|---|---|---|
DDIModelVariableResolver(ddiModelList:IList = null)
Constructor. | DDIModelVariableResolver | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
イベントリスナーオブジェクトを EventDispatcher オブジェクトに登録し、リスナーがイベントの通知を受け取るようにします。 | EventDispatcher | ||
イベントをイベントフローに送出します。 | EventDispatcher | ||
Gets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
EventDispatcher オブジェクトに、特定のイベントタイプに対して登録されたリスナーがあるかどうかを確認します。 | EventDispatcher | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
EventDispatcher オブジェクトからリスナーを削除します。 | EventDispatcher | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
Sets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object | ||
指定されたイベントタイプについて、この EventDispatcher オブジェクトまたはその祖先にイベントリスナーが登録されているかどうかを確認します。 | EventDispatcher |
イベント
イベント | 概要 | 定義元 | ||
---|---|---|---|---|
[ブロードキャストイベント] Flash Player または AIR アプリケーションがオペレーティングシステムのフォーカスを取得して、アクティブになったときに送出されます。 | EventDispatcher | |||
[ブロードキャストイベント] Flash Player または AIR アプリケーションがオペレーティングシステムのフォーカスを失って、非アクティブになったときに送出されます。 | EventDispatcher | |||
Dispatched when the value of a variable is changed. | DDIModelVariableResolver |
パブリック定数
定数 | 定義元 | ||
---|---|---|---|
DD_PREFIX : String = "DD_" [静的]
Prefix for the key i.e. | DDIModelVariableResolver | ||
keyDelimiter : String = "_" [静的]
This key delimiter. | DDIModelVariableResolver |
プロパティの詳細
dataDictionaryInstanceModelList | プロパティ |
dataDictionaryInstanceModelList:IList
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
The underlying list of data dictionary instance models.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 dataDictionaryInstanceListChanged
イベントが送出されます。
実装
public function get dataDictionaryInstanceModelList():IList
public function set dataDictionaryInstanceModelList(value:IList):void
コンストラクターの詳細
DDIModelVariableResolver | () | コンストラクター |
メソッドの詳細
getValue | () | メソッド |
public function getValue(varName:String):Object
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Gets the value of data dictionary element of a particular data dictionary.
パラメーター
varName:String — the variable name which can uniquely identify a data dictionary element. The variable has to comply with the format DD_DataDictionaryName_DDEReferenceName.
|
Object — A value of null if the value of data dictionary element is null.
undefined if the data dictionary element key is missing in data dictionary instance.
typed value if the value for data dictionary element is present in DDI.
|
setValue | () | メソッド |
public function setValue(varName:String, value:Object):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Sets the value of data dictionary element of a particular data dictionary.
パラメーター
varName:String — the variable name which can uniquely identify a data dictionary element. The variable has to comply with the format DD_DataDictionaryName_DDEReferenceName.
| |
value:Object — the value of data dictionary element to be set.
|
イベントの詳細
variableChangeEvent | イベント |
イベントオブジェクトの型:
プロパティ VariableChangeEvent.type =
com.adobe.solutions.exm.runtime.VariableChangeEvent
プロパティ VariableChangeEvent.type =
com.adobe.solutions.exm.runtime.VariableChangeEvent
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the value of a variable is changed. This event, being bubbling in nature, can be leveraged by the UI to update itself.
定数の詳細
DD_PREFIX | 定数 |
public static const DD_PREFIX:String = "DD_"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Prefix for the key i.e. ({DD_PREFIX}{DD name}.{DDE reference name}
).
keyDelimiter | 定数 |
public static const keyDelimiter:String = "_"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Data Dictionary Building Block 10 |
ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
This key delimiter. It is used to delimit the various parts of the key i.e DD_DataDictionaryName_DDEReferenceName.
Tue Jun 12 2018, 10:34 AM Z