パッケージ | com.adobe.gravity.framework |
クラス | public class BundleEvent |
継承 | BundleEvent Event Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
プロパティ | 定義元 | ||
---|---|---|---|
bubbles : Boolean [読み取り専用]
イベントがバブリングイベントかどうかを示します。 | Event | ||
bundle : IBundle [読み取り専用]
The bundle undergoing a lifecycle transition. | BundleEvent | ||
cancelable : Boolean [読み取り専用]
イベントに関連付けられた動作を回避できるかどうかを示します。 | Event | ||
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
currentTarget : Object [読み取り専用]
イベントリスナーで Event オブジェクトをアクティブに処理しているオブジェクトです。 | Event | ||
eventPhase : uint [読み取り専用]
イベントフローの現在の段階です。 | Event | ||
target : Object [読み取り専用]
イベントターゲットです。 | Event | ||
type : String [読み取り専用]
イベントのタイプです。 | Event |
メソッド | 定義元 | ||
---|---|---|---|
Constructor. | BundleEvent | ||
[オーバーライド]
Duplicates an instance of an Event subclass. | BundleEvent | ||
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。 | Event | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。 | Event | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。 | Event | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
Event オブジェクトのすべてのプロパティを含むストリングを返します。 | Event | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object |
定数 | 定義元 | ||
---|---|---|---|
BUNDLE_INSTALLED : String = "bundleInstalled" [静的] A bundle has been installed. | BundleEvent | ||
BUNDLE_RESOLVED : String = "bundleResolved" [静的] A bundle has been resolved. | BundleEvent | ||
BUNDLE_RESOLVING : String = "bundleResolving" [静的] A bundle is about to be resolved. | BundleEvent | ||
BUNDLE_STARTED : String = "bundleStarted" [静的] A bundle has been started. | BundleEvent | ||
BUNDLE_STARTING : String = "bundleStarting" [静的] A bundle is about to be started. | BundleEvent | ||
BUNDLE_STOPPED : String = "bundleStopped" [静的] A bundle has been stopped. | BundleEvent | ||
BUNDLE_STOPPING : String = "bundleStopping" [静的] A bundle is about to be stopped. | BundleEvent | ||
BUNDLE_UNINSTALLED : String = "bundleUninstalled" [静的] A bundle has been uninstalled. | BundleEvent | ||
BUNDLE_UNINSTALLING : String = "bundleUninstalling" [静的] A bundle is about to be uninstalled. | BundleEvent | ||
BUNDLE_UPDATED : String = "bundleUpdated" [静的] A bundle has been updated. | BundleEvent | ||
BUNDLE_UPDATING : String = "bundleUpdating" [静的] A bundle is about to be updated. | BundleEvent |
bundle | プロパティ |
BundleEvent | () | コンストラクター |
public function BundleEvent(type:String, bundle:IBundle)
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Constructor.
パラメーターtype:String — The type of lifecycle event.
| |
bundle:IBundle — The bundle involved.
|
clone | () | メソッド |
override public function clone():Event
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Duplicates an instance of an Event subclass.
Returns a new Event object that is a copy of the original instance of the Event object.
You do not normally call clone()
; the EventDispatcher class calls it automatically
when you redispatch an event—that is, when you call dispatchEvent(event)
from a handler
that is handling event
.
The new Event object includes all the properties of the original.
When creating your own custom Event class, you must override the
inherited Event.clone()
method in order for it to duplicate the
properties of your custom class. If you do not set all the properties that you add
in your event subclass, those properties will not have the correct values when listeners
handle the redispatched event.
In this example, PingEvent
is a subclass of Event
and therefore implements its own version of clone()
.
class PingEvent extends Event { var URL:String; public override function clone():Event { return new PingEvent(type, bubbles, cancelable, URL); } }
Event — A new Event object that is identical to the original.
|
BUNDLE_INSTALLED | 定数 |
public static const BUNDLE_INSTALLED:String = "bundleInstalled"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle has been installed.
BUNDLE_RESOLVED | 定数 |
public static const BUNDLE_RESOLVED:String = "bundleResolved"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle has been resolved.
BUNDLE_RESOLVING | 定数 |
public static const BUNDLE_RESOLVING:String = "bundleResolving"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle is about to be resolved.
BUNDLE_STARTED | 定数 |
public static const BUNDLE_STARTED:String = "bundleStarted"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle has been started.
BUNDLE_STARTING | 定数 |
public static const BUNDLE_STARTING:String = "bundleStarting"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle is about to be started.
BUNDLE_STOPPED | 定数 |
public static const BUNDLE_STOPPED:String = "bundleStopped"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle has been stopped.
BUNDLE_STOPPING | 定数 |
public static const BUNDLE_STOPPING:String = "bundleStopping"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle is about to be stopped.
BUNDLE_UNINSTALLED | 定数 |
public static const BUNDLE_UNINSTALLED:String = "bundleUninstalled"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle has been uninstalled.
BUNDLE_UNINSTALLING | 定数 |
public static const BUNDLE_UNINSTALLING:String = "bundleUninstalling"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle is about to be uninstalled.
BUNDLE_UPDATED | 定数 |
public static const BUNDLE_UPDATED:String = "bundleUpdated"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle has been updated.
BUNDLE_UPDATING | 定数 |
public static const BUNDLE_UPDATING:String = "bundleUpdating"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
A bundle is about to be updated.
Tue Jun 12 2018, 10:34 AM Z