Pakiet | com.adobe.dct.exp |
Klasa | public class DDIModelVariableResolver |
Dziedziczenie | DDIModelVariableResolver EventDispatcher Object |
Implementuje | IVariableResolver |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 10.2 |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
dataDictionaryInstanceModelList : IList
The underlying list of data dictionary instance models. | DDIModelVariableResolver |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
DDIModelVariableResolver(ddiModelList:IList = null)
Constructor. | DDIModelVariableResolver | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Rejestruje obiekt detektora zdarzeń w obiekcie EventDispatcher, dzięki czemu detektor będzie otrzymywał powiadomienia o zdarzeniu. | EventDispatcher | ||
Wywołuje zdarzenie, tj. kieruje je do przepływu zdarzeń. | EventDispatcher | ||
Gets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
Sprawdza, czy obiekt EventDispatcher zawiera jakiekolwiek detektory zarejestrowane dla konkretnego typu zdarzeń. | EventDispatcher | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Usuwa detektor z obiektu EventDispatcher. | EventDispatcher | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Sets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object | ||
Sprawdza, czy detektor zdarzeń określonego typu jest zarejestrowany w tym obiekcie EventDispatcher lub jego elementach macierzystych. | EventDispatcher |
Zdarzenie | Podsumowanie | Zdefiniowane przez | ||
---|---|---|---|---|
[zdarzenie broadcast] Wywoływane, gdy program Flash Player lub aplikacja środowiska wykonawczego AIR uzyskuje fokus w systemie operacyjnym i przechodzi w stan aktywny. | EventDispatcher | |||
[zdarzenie broadcast] Wywoływane, gdy program Flash Player lub aplikacja AIR traci fokus w systemie operacyjnym i przechodzi w stan nieaktywny. | EventDispatcher | |||
Dispatched when the value of a variable is changed. | DDIModelVariableResolver |
Stała | Zdefiniowane przez | ||
---|---|---|---|
DD_PREFIX : String = "DD_" [statyczny]
Prefix for the key i.e. | DDIModelVariableResolver | ||
keyDelimiter : String = "_" [statyczny]
This key delimiter. | DDIModelVariableResolver |
dataDictionaryInstanceModelList | właściwość |
dataDictionaryInstanceModelList:IList
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 10.2 |
The underlying list of data dictionary instance models.
Ta właściwość może być używana jako źródło dla tworzenia powiązań danych. Jeśli ta właściwość zostanie zmodyfikowana, zostanie wywołane zdarzenie dataDictionaryInstanceListChanged
.
Implementacja
public function get dataDictionaryInstanceModelList():IList
public function set dataDictionaryInstanceModelList(value:IList):void
DDIModelVariableResolver | () | Konstruktor |
public function DDIModelVariableResolver(ddiModelList:IList = null)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 10.2 |
Constructor.
ParametryddiModelList:IList (default = null ) — list of data dictionary instance models.
|
getValue | () | metoda |
public function getValue(varName:String):Object
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 10.2 |
Gets the value of data dictionary element of a particular data dictionary.
Parametry
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 | () | metoda |
public function setValue(varName:String, value:Object):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 10.2 |
Sets the value of data dictionary element of a particular data dictionary.
Parametry
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 | Zdarzenie |
com.adobe.solutions.exm.runtime.VariableChangeEvent
właściwość VariableChangeEvent.type =
com.adobe.solutions.exm.runtime.VariableChangeEvent
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const DD_PREFIX:String = "DD_"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 10.2 |
Prefix for the key i.e. ({DD_PREFIX}{DD name}.{DDE reference name}
).
keyDelimiter | Stała |
public static const keyDelimiter:String = "_"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Data Dictionary Building Block 10 |
Wersje środowiska wykonawczego: | 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, 12:06 PM Z