| Paket | com.adobe.solutions.exm.authoring.domain.expression |
| Arabirim | public interface IExpression extends IEventDispatcher |
| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
| Özellik | Tanımlayan: | ||
|---|---|---|---|
| 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 [salt okunur]
Returns the unique ID of this expression. | IExpression | ||
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
![]() | addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
EventDispatcher nesnesi olan bir olay dinleyici nesnesini, dinleyicinin bir olayın bildirimini alması için kaydeder. | 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 | ||
![]() |
Olay akışına bir olay gönderir. | IEventDispatcher | |
![]() |
EventDispatcher nesnesinin belirli bir olay türü için kayıtlı dinleyicisi olup olmadığını kontrol eder. | IEventDispatcher | |
Returns the list of variables referenced inside this expression. | IExpression | ||
![]() |
EventDispatcher nesnesinden bir dinleyiciyi kaldırır. | IEventDispatcher | |
Fires an asynchronous operation for updating this expression in the expression repository. | IExpression | ||
Validates this expression for syntactic correctness. | IExpression | ||
![]() |
Bir olay dinleyicisinin bu EventDispatcher nesnesiyle mi, yoksa onun belirtilen olay türüne yönelik üst öğelerinden biriyle mi kayıtlı olduğunu kontrol eder. | IEventDispatcher | |
| Olay | Özet | Tanımlayan: | ||
|---|---|---|---|---|
| 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 | özellik |
assignedTo:String| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get assignedTo():String public function set assignedTo(value:String):voiddescription | özellik |
description:String| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Returns a human-readable verbose description for this expression.
Uygulama
public function get description():String public function set description(value:String):voiddisplayName | özellik |
displayName:String| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Returns a human-readable display-text for this expression.
Uygulama
public function get displayName():String public function set displayName(value:String):voidexpression | özellik |
expression:String| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Returns the actual expression string represented by this expression.
Uygulama
public function get expression():String public function set expression(value:String):voidid | özellik |
createExpression | () | yöntem |
public function createExpression():void| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | 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 | () | yöntem |
public function deleteExpression():void| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | 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 | () | yöntem |
public function referencedVariables():IList| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Returns the list of variables referenced inside this expression.
DöndürürIList — A list of string variable-names corresponding to the variables referenced inside this expression.
|
updateExpression | () | yöntem |
public function updateExpression():void| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | 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 | () | yöntem |
public function validate():ExpressionValidationResult| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Validates this expression for syntactic correctness.
DöndürürExpressionValidationResult — An ExpressionValidationResult instance encapsulating the result of validation.
|
expressionCreateEvent | Olay |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionCreateEvent| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully created in the expression repository.
expressionDeleteEvent | Olay |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionDeleteEvent| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully deleted from the expression repository.
expressionErrorEvent | Olay |
com.adobe.solutions.exm.authoring.domain.ErrorEvent| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Dispatched when an error occurs while creating/updating/deleting the expression in the expression repository.
expressionUpdateEvent | Olay |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionUpdateEvent| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Expression Manager Building Block 10 |
| Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully updated in the expression repository.
Tue Jun 12 2018, 01:09 PM Z
Miras Alınan Genel Yöntemleri Gizle
Miras Alınan Genel Yöntemleri Göster