パッケージ | com.adobe.mosaic.om.events |
クラス | public class CatalogLoadEvent |
継承 | CatalogLoadEvent BaseEvent Event Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
CatalogLoadEvent
class defines a transient notification of catalog load results.
CatalogLoadEvent
objects are not retained or stored after all their listeners have been processed.
CatalogLoadEvent
objects are used to communicate information and do not need to be
persisted or referenced.
プロパティ | 定義元 | ||
---|---|---|---|
bubbles : Boolean [読み取り専用]
イベントがバブリングイベントかどうかを示します。 | Event | ||
cancelable : Boolean [読み取り専用]
イベントに関連付けられた動作を回避できるかどうかを示します。 | Event | ||
catalog : ICatalog [読み取り専用]
Returns the catalog node that was loaded
| CatalogLoadEvent | ||
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
currentTarget : Object [読み取り専用]
イベントリスナーで Event オブジェクトをアクティブに処理しているオブジェクトです。 | Event | ||
eventPhase : uint [読み取り専用]
イベントフローの現在の段階です。 | Event | ||
message : String [読み取り専用]
Returns a message string. | BaseEvent | ||
NAMESPACE : String [静的] [読み取り専用]
The namespace for messages of this type. | CatalogLoadEvent | ||
object : * [読み取り専用]
Returns the node that was added. | BaseEvent | ||
target : Object [読み取り専用]
イベントターゲットです。 | Event | ||
type : String [読み取り専用]
イベントのタイプです。 | Event |
メソッド | 定義元 | ||
---|---|---|---|
Constructor. | CatalogLoadEvent | ||
[オーバーライド]
Clones this CatalogLoadEvent instance. | CatalogLoadEvent | ||
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。 | Event | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。 | Event | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。 | Event | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
Event オブジェクトのすべてのプロパティを含むストリングを返します。 | Event | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object |
定数 | 定義元 | ||
---|---|---|---|
FAILURE : String = "catalogLoadEventFailure" [静的]
The message type sent when a catalog fails to load. | CatalogLoadEvent | ||
SUCCESS : String = "catalogLoadEventSuccess" [静的]
The message type sent when a catalog is loaded successfully. | CatalogLoadEvent |
catalog | プロパティ |
catalog:ICatalog
[読み取り専用] 言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 return catalog ICatalog |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Returns the catalog node that was loaded
実装
public function get catalog():ICatalog
関連する API エレメント
NAMESPACE | プロパティ |
CatalogLoadEvent | () | コンストラクター |
public function CatalogLoadEvent(type:String, catalog:ICatalog, msg:String)
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Constructor.
パラメーターtype:String — Event type
| |
catalog:ICatalog — Event ICatalog
| |
msg:String — Event message
|
clone | () | メソッド |
override public function clone():Event
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Clones this CatalogLoadEvent instance. 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 — clone The cloned CatalogLoadEvent
|
FAILURE | 定数 |
public static const FAILURE:String = "catalogLoadEventFailure"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The message type sent when a catalog fails to load.
SUCCESS | 定数 |
public static const SUCCESS:String = "catalogLoadEventSuccess"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The message type sent when a catalog is loaded successfully.
Tue Jun 12 2018, 10:34 AM Z