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