パッケージ | com.adobe.solutions.rca.presentation.event |
クラス | public class TemplateEvent |
継承 | TemplateEvent Event Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
プロパティ | 定義元 | ||
---|---|---|---|
bubbles : Boolean [読み取り専用]
イベントがバブリングイベントかどうかを示します。 | Event | ||
cancelable : Boolean [読み取り専用]
イベントに関連付けられた動作を回避できるかどうかを示します。 | Event | ||
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
currentTarget : Object [読み取り専用]
イベントリスナーで Event オブジェクトをアクティブに処理しているオブジェクトです。 | Event | ||
eventPhase : uint [読み取り専用]
イベントフローの現在の段階です。 | Event | ||
isModified : Boolean
A True value of this Boolean flag indicates that the template has been modified locally. | TemplateEvent | ||
target : Object [読み取り専用]
イベントターゲットです。 | Event | ||
template : com.adobe.solutions.rca.domain:IReviewTemplate
This property refers to the template on which the operation is performed. | TemplateEvent | ||
type : String [読み取り専用]
イベントのタイプです。 | Event |
メソッド | 定義元 | ||
---|---|---|---|
The constructor for TemplateEvent class. | TemplateEvent | ||
[オーバーライド]
Duplicates an instance of an Event subclass. | TemplateEvent | ||
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。 | Event | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。 | Event | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。 | Event | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
Event オブジェクトのすべてのプロパティを含むストリングを返します。 | Event | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object |
定数 | 定義元 | ||
---|---|---|---|
NEW_TEMPLATE_EVENT : String = "newTemplateEvent" [静的]
This value indicates that a new template has been created. | TemplateEvent | ||
TEMPLATE_SAVED_EVENT : String = "templateSavedEvent" [静的]
This value indicates that a template has been saved. | TemplateEvent | ||
TEMPLATE_SELECTED_EVENT : String = "templateSelectedEvent" [静的]
This value indicates that an existing template has been selected. | TemplateEvent | ||
TEMPLATE_WORKFLOW_CANCEL_EVENT : String = "templateWorkflowCancelEvent" [静的]
This value indicates that a template creation workflow has been canceled. | TemplateEvent |
isModified | プロパティ |
isModified:Boolean
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
A True
value of this Boolean flag indicates that the template has been modified locally.
実装
public function get isModified():Boolean
public function set isModified(value:Boolean):void
template | プロパティ |
template:com.adobe.solutions.rca.domain:IReviewTemplate
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
This property refers to the template on which the operation is performed.
実装
public function get template():com.adobe.solutions.rca.domain:IReviewTemplate
public function set template(value:com.adobe.solutions.rca.domain:IReviewTemplate):void
TemplateEvent | () | コンストラクター |
public function TemplateEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10.0 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
The constructor for TemplateEvent
class.
type:String — The type of the event, accessible as Event.type.
| |
bubbles:Boolean (default = false ) — Determines whether the Event object participates in the bubbling stage of the event flow. The default value is false.
| |
cancelable:Boolean (default = false ) — Determines whether the Event object can be canceled. The default values is false.
|
clone | () | メソッド |
override public function clone():Event
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
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.
|
NEW_TEMPLATE_EVENT | 定数 |
public static const NEW_TEMPLATE_EVENT:String = "newTemplateEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a new template has been created.
TEMPLATE_SAVED_EVENT | 定数 |
public static const TEMPLATE_SAVED_EVENT:String = "templateSavedEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template has been saved.
TEMPLATE_SELECTED_EVENT | 定数 |
public static const TEMPLATE_SELECTED_EVENT:String = "templateSelectedEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
This value indicates that an existing template has been selected.
TEMPLATE_WORKFLOW_CANCEL_EVENT | 定数 |
public static const TEMPLATE_WORKFLOW_CANCEL_EVENT:String = "templateWorkflowCancelEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Review, Commenting, and Approval Building Block 10 |
ランタイムバージョン: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template creation workflow has been canceled.
Tue Jun 12 2018, 10:34 AM Z