| パッケージ | com.adobe.solutions.exm.authoring.domain.expression |
| インターフェイス | public interface IExpression extends IEventDispatcher |
| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
| プロパティ | 定義元 | ||
|---|---|---|---|
| assignedTo : String
Returns the variable this expression is assigned to, or null if the expression is not assigned
to any variable. | IExpression | ||
| description : String
Returns a human-readable verbose description for this expression. | IExpression | ||
| displayName : String
Returns a human-readable display-text for this expression. | IExpression | ||
| expression : String
Returns the actual expression string represented by this expression. | IExpression | ||
| id : String [読み取り専用]
Returns the unique ID of this expression. | IExpression | ||
| メソッド | 定義元 | ||
|---|---|---|---|
![]() | addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
イベントリスナーオブジェクトを EventDispatcher オブジェクトに登録し、リスナーがイベントの通知を受け取るようにします。 | IEventDispatcher | |
Fires an asynchronous operation for creating this expression in the expression repository. | IExpression | ||
Fires an asynchronous operation for deleting this expression from the expression repository. | IExpression | ||
![]() |
イベントをイベントフローに送出します。 | IEventDispatcher | |
![]() |
EventDispatcher オブジェクトに、特定のイベントタイプに対して登録されたリスナーがあるかどうかを確認します。 | IEventDispatcher | |
Returns the list of variables referenced inside this expression. | IExpression | ||
![]() |
EventDispatcher オブジェクトからリスナーを削除します。 | IEventDispatcher | |
Fires an asynchronous operation for updating this expression in the expression repository. | IExpression | ||
Validates this expression for syntactic correctness. | IExpression | ||
![]() |
指定されたイベントタイプについて、この EventDispatcher オブジェクトまたはその祖先にイベントリスナーが登録されているかどうかを確認します。 | IEventDispatcher | |
| イベント | 概要 | 定義元 | ||
|---|---|---|---|---|
| Dispatched when the expression is successfully created in the expression repository. | IExpression | |||
| Dispatched when the expression is successfully deleted from the expression repository. | IExpression | |||
| Dispatched when an error occurs while creating/updating/deleting the expression in the expression repository. | IExpression | |||
| Dispatched when the expression is successfully updated in the expression repository. | IExpression | |||
assignedTo | プロパティ |
assignedTo:String| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Returns the variable this expression is assigned to, or null if the expression is not assigned to any variable.
実装
public function get assignedTo():String public function set assignedTo(value:String):voiddescription | プロパティ |
displayName | プロパティ |
expression | プロパティ |
id | プロパティ |
createExpression | () | メソッド |
public function createExpression():void| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for creating this expression in the expression repository. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation succeeds, an event with name "expressionCreateEvent" of type ExpressionCreateEvent. The 'expression' property of the event will be a reference to the current expression object.
- If the operation fails, an event with name "expressionErrorEvent" of type ErrorEvent. The 'error' property on the event will contain the actual error thrown by the operation.
deleteExpression | () | メソッド |
public function deleteExpression():void| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for deleting this expression from the expression repository. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation succeeds, an event with name "expressionDeleteEvent" of type ExpressionDeleteEvent. The 'expression' property of the event will be a reference to the current expression object.
- If the operation fails, an event with name "expressionErrorEvent" of type ErrorEvent. The 'error' property on the event will contain the actual error thrown by the operation.
referencedVariables | () | メソッド |
public function referencedVariables():IList| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Returns the list of variables referenced inside this expression.
戻り値IList — A list of string variable-names corresponding to the variables referenced inside this expression.
|
updateExpression | () | メソッド |
public function updateExpression():void| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for updating this expression in the expression repository. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation succeeds, an event with name "expressionUpdateEvent" of type ExpressionUpdateEvent. The 'expression' property of the event will be a reference to the current expression object.
- If the operation fails, an event with name "expressionErrorEvent" of type ErrorEvent. The 'error' property on the event will contain the actual error thrown by the operation.
validate | () | メソッド |
public function validate():ExpressionValidationResult| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Validates this expression for syntactic correctness.
戻り値ExpressionValidationResult — An ExpressionValidationResult instance encapsulating the result of validation.
|
expressionCreateEvent | イベント |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionCreateEvent| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully created in the expression repository.
expressionDeleteEvent | イベント |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionDeleteEvent| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully deleted from the expression repository.
expressionErrorEvent | イベント |
com.adobe.solutions.exm.authoring.domain.ErrorEvent| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Dispatched when an error occurs while creating/updating/deleting the expression in the expression repository.
expressionUpdateEvent | イベント |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionUpdateEvent| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Expression Manager Building Block 10 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully updated in the expression repository.
Tue Jun 12 2018, 10:34 AM Z
継承されるパブリックメソッドを隠す
継承されるパブリックメソッドを表示