| Package | jp.progression.events |
| Class | public class ExecuteErrorEvent |
| Inheritance | ExecuteErrorEvent flash.events.ErrorEvent |
// ExecuteErrorEvent インスタンスを作成する var event:ExecuteErrorEvent = new ExecuteErrorEvent();
| Property | Defined by | ||
|---|---|---|---|
| errorObject : Error [read-only]
オブジェクトからスローされた例外を取得します。
| ExecuteErrorEvent | ||
| errorTarget : * [read-only]
例外が送出された際の対象オブジェクトを取得します。
| ExecuteErrorEvent | ||
| Method | Defined by | ||
|---|---|---|---|
|
ExecuteErrorEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, errorTarget:Error = null, errorObject:* = null)
新しい ExecuteErrorEvent インスタンスを作成します。
Creates a new ExecuteErrorEvent object.
| ExecuteErrorEvent | ||
|
clone():Event
ExecuteErrorEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。
Duplicates an instance of an ExecuteErrorEvent subclass.
| ExecuteErrorEvent | ||
|
toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
| ExecuteErrorEvent | ||
| Constant | Defined by | ||
|---|---|---|---|
| EXECUTE_ERROR : String = "executeError" [static]
error イベントオブジェクトの type プロパティ値を定義します。
The ExecuteErrorEvent.EXECUTE_ERROR constant defines the value of the type property of an error event object.
| ExecuteErrorEvent | ||
| errorObject | property |
errorObject:Error [read-only]オブジェクトからスローされた例外を取得します。
Implementation public function get errorObject():Error
| errorTarget | property |
errorTarget:* [read-only]例外が送出された際の対象オブジェクトを取得します。
Implementation public function get errorTarget():*
| ExecuteErrorEvent | () | constructor |
public function ExecuteErrorEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, errorTarget:Error = null, errorObject:* = null)新しい ExecuteErrorEvent インスタンスを作成します。 Creates a new ExecuteErrorEvent object.
Parameterstype:String — ExecuteErrorEvent.type としてアクセス可能なイベントタイプです。
The type of the event, accessible as ExecuteErrorEvent.type.
|
|
bubbles:Boolean (default = false) — ExecuteErrorEvent インスタンスがイベントフローのバブリング段階で処理されるかどうかを判断します。デフォルト値は false です。
Determines whether the ExecuteErrorEvent object participates in the bubbling stage of the event flow. The default value is false.
|
|
cancelable:Boolean (default = false) — ExecuteErrorEvent インスタンスがキャンセル可能かどうかを判断します。デフォルト値は false です。
Determines whether the ExecuteErrorEvent object can be canceled. The default values is false.
|
|
errorTarget:Error (default = null) — 例外が送出された際の対象オブジェクトです。
|
|
errorObject:* (default = null) — オブジェクトからスローされた例外です。
|
| clone | () | method |
public override function clone():EventExecuteErrorEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an ExecuteErrorEvent subclass.
ReturnsEvent — 元のオブジェクトと同じプロパティ値を含む新しい ExecuteErrorEvent インスタンスです。
A new ExecuteErrorEvent object that is identical to the original.
|
| toString | () | method |
public override function toString():String指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ReturnsString — オブジェクトのストリング表現です。
A string representation of the object.
|
| EXECUTE_ERROR | constant |
public static const EXECUTE_ERROR:String = "executeError"error イベントオブジェクトの type プロパティ値を定義します。 The ExecuteErrorEvent.EXECUTE_ERROR constant defines the value of the type property of an error event object.
See also