Adobe® Flash® Platform 用 ActionScript® 3.0 リファレンスガイド
ホーム  |  パッケージおよびクラスリストの非表示 |  パッケージ  |  クラス  |  新機能  |  索引  |  付録  |  英語で表示される理由
フィルター: サーバーからデータを取得しています...
サーバーからデータを取得しています...
com.adobe.gravity.framework 

ServiceEvent  - AS3 ADEP Client Component

パッケージcom.adobe.gravity.framework
クラスpublic class ServiceEvent
継承ServiceEvent Inheritance Event Inheritance Object

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

The ServiceEvent class indicates changes in service properties or availability.



パブリックプロパティ
 プロパティ定義元
 Inheritedbubbles : Boolean
[読み取り専用] イベントがバブリングイベントかどうかを示します。
Event
 Inheritedcancelable : Boolean
[読み取り専用] イベントに関連付けられた動作を回避できるかどうかを示します。
Event
 Inheritedconstructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。
Object
 InheritedcurrentTarget : Object
[読み取り専用] イベントリスナーで Event オブジェクトをアクティブに処理しているオブジェクトです。
Event
 InheritedeventPhase : uint
[読み取り専用] イベントフローの現在の段階です。
Event
  serviceClass : Class
[読み取り専用] The service class.
ServiceEvent
  serviceReference : IServiceReference
[読み取り専用] The service undergoing a lifecycle change.
ServiceEvent
 Inheritedtarget : Object
[読み取り専用] イベントターゲットです。
Event
 Inheritedtype : String
[読み取り専用] イベントのタイプです。
Event
パブリックメソッド
 メソッド定義元
  
ServiceEvent(type:String, reference:IServiceReference, clazz:Class)
Constructor.
ServiceEvent
  
[オーバーライド] Duplicates an instance of an Event subclass.
ServiceEvent
 Inherited
formatToString(className:String, ... arguments):String
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。
Event
 Inherited
オブジェクトに指定されたプロパティが定義されているかどうかを示します。
Object
 Inherited
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。
Event
 Inherited
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。
Object
 Inherited
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。
Event
 Inherited
指定されたプロパティが存在し、列挙できるかどうかを示します。
Object
 Inherited
ループ処理に対するダイナミックプロパティの可用性を設定します。
Object
 Inherited
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。
Event
 Inherited
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。
Event
 Inherited
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。
Object
 Inherited
Event オブジェクトのすべてのプロパティを含むストリングを返します。
Event
 Inherited
指定されたオブジェクトのプリミティブな値を返します。
Object
パブリック定数
 定数定義元
  SERVICE_MODIFIED : String = "serviceModified"
[静的] The serviceModified event type indicates that the properties of the service have been modified.
ServiceEvent
  SERVICE_REGISTERED : String = "serviceRegistered"
[静的] The serviceRegistered event type indicates that the service has been registered.
ServiceEvent
  SERVICE_UNREGISTERING : String = "serviceUnregistering"
[静的] The serviceUnregistering event type indicates that the service is in the process of being unregistered.
ServiceEvent
プロパティの詳細

serviceClass

プロパティ
serviceClass:Class  [読み取り専用]

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

The service class.



実装
    public function get serviceClass():Class

serviceReference

プロパティ 
serviceReference:IServiceReference  [読み取り専用]

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

The service undergoing a lifecycle change.



実装
    public function get serviceReference():IServiceReference
コンストラクターの詳細

ServiceEvent

()コンストラクター
public function ServiceEvent(type:String, reference:IServiceReference, clazz:Class)

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Constructor.

パラメーター
type:String — event type.
 
reference:IServiceReference — service reference for the affected service.
 
clazz:Class — service class.
メソッドの詳細

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.
定数の詳細

SERVICE_MODIFIED

定数
public static const SERVICE_MODIFIED:String = "serviceModified"

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

The serviceModified event type indicates that the properties of the service have been modified.

SERVICE_REGISTERED

定数 
public static const SERVICE_REGISTERED:String = "serviceRegistered"

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

The serviceRegistered event type indicates that the service has been registered.

SERVICE_UNREGISTERING

定数 
public static const SERVICE_UNREGISTERING:String = "serviceUnregistering"

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

The serviceUnregistering event type indicates that the service is in the process of being unregistered.





[ X ]英語で表示される理由
ActionScript 3.0 リファレンスガイドのコンテンツが英語で表示されます。

ActionScript 3.0 リファレンスガイドのすべての部分がすべての言語に翻訳されているわけではありません。言語エレメントが翻訳されていない場合、そのエレメントは英語で表示されます。例えば、ga.controls.HelpBox クラスはどの言語にも訳されていません。このため、リファレンスガイドの日本語バージョンでは、ga.controls.HelpBox クラスは英語で表示されます。