| Paket | mx.data.events |
| Sınıf | public class DataConflictEvent |
| Miras Alma | DataConflictEvent Event Object |
| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
İlgili API Öğeleri
Genel Özellikler
| Özellik | Tanımlayan: | ||
|---|---|---|---|
![]() | bubbles : Boolean [salt okunur]
Bir olayın köpüren bir olay olup olmadığını belirtir. | Event | |
![]() | cancelable : Boolean [salt okunur]
Olayla ilişkilendirilmiş davranışın önlenebilir olup olmadığını gösterir. | Event | |
| conflict : Conflict [salt okunur]
The Conflict object that represents the error. | DataConflictEvent | ||
![]() | constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | |
![]() | currentTarget : Object [salt okunur]
Bu Event nesnesini olay dinleyicisiyle etkin olarak işleyen nesne. | Event | |
![]() | eventPhase : uint [salt okunur]
Olay akışındaki geçerli aşama. | Event | |
![]() | target : Object [salt okunur]
Olay hedefi. | Event | |
![]() | type : String [salt okunur]
Olay türü. | Event | |
Genel Yöntemler
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
DataConflictEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, c:Conflict = null)
Constructor. | DataConflictEvent | ||
[geçersiz kıl]
Duplicate the DataConflictEvent. | DataConflictEvent | ||
[statik]
Creates a DataConflictEvent object from a Conflict object. | DataConflictEvent | ||
![]() |
Özel ActionScript 3.0 Event sınıfınızdaki toString() yöntemini uygulamak için bir yardımcı işlev. | Event | |
![]() |
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | |
![]() |
Olayda preventDefault() öğesinin çağrılmış olup olmadığını kontrol eder. | Event | |
![]() |
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | |
![]() |
Bir olayın varsayılan davranışını, bu yapılabiliyorsa iptal eder. | Event | |
![]() |
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | |
![]() |
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | |
![]() |
Olay akışında geçerli düğümdeki ve ondan sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller. | Event | |
![]() |
Olay akışında geçerli düğümden sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller. | Event | |
![]() |
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | |
![]() |
Event nesnesinin tüm özelliklerini içeren bir dize döndürülür. | Event | |
![]() |
Belirtilen nesnenin temel değerini döndürür. | Object | |
Genel Sabitler
| Sabit | Tanımlayan: | ||
|---|---|---|---|
| CONFLICT : String = "conflict" [statik]
The CONFLICT constant defines the value of the type property
of the event object for a conflict event. | DataConflictEvent | ||
Özellik Ayrıntısı
conflict | özellik |
Yapıcı Ayrıntı
DataConflictEvent | () | Yapıcı |
public function DataConflictEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, c:Conflict = null)| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor. It is recommended that you use the static function DataConflictEvent.createEvent() to create a DataConflictEvent
Parametrelertype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false) — Specifies whether the event can bubble up the display list hierarchy.
| |
cancelable:Boolean (default = false) — Specifies whether the behavior associated with the event can be prevented.
| |
c:Conflict (default = null) — The Conflict object that represents the error.
|
Yöntem Ayrıntısı
clone | () | yöntem |
override public function clone():Event| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Duplicate the DataConflictEvent. Note that the mx.data.Conflict object contained in this event is NOT duplicated, as it is not clonable.
DöndürürEvent — the new Event
|
createEvent | () | yöntem |
public static function createEvent(c:Conflict):DataConflictEvent| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Creates a DataConflictEvent object from a Conflict object.
Parametreler
c:Conflict — The Conflict object that represents the error.
|
DataConflictEvent — The new DataConflictEvent object.
|
Sabit Ayrıntısı
CONFLICT | Sabit |
public static const CONFLICT:String = "conflict"| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The CONFLICT constant defines the value of the type property
of the event object for a conflict event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
conflict | The Conflict object that holds the conflict that occurred. |
message | The Message associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 01:09 PM Z
Miras Alınan Genel Özellikleri Gizle
Miras Alınan Genel Özellikleri Göster