Package | com.vmware.core.model |
Class | public class DataObject |
Inheritance | DataObject ![]() |
Implements | IOptional, flash.events.IEventDispatcher |
Subclasses | ArrayDataObject, BooleanDataObject, DateDataObject, IntDataObject, NumberDataObject, ObjectDataObject, StringDataObject, UintDataObject |
Property | Defined By | ||
---|---|---|---|
isUnset : Boolean
Indicates whether the contained value(s) or the data properties of this
object are unset. | DataObject | ||
sourceInfo_ : SourceInfo
Source information containing extra details for this reference. | DataObject |
Method | Defined By | ||
---|---|---|---|
DataObject | |||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void | DataObject | ||
dispatchEvent(evt:Event):Boolean | DataObject | ||
hasEventListener(type:String):Boolean | DataObject | ||
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void | DataObject | ||
willTrigger(type:String):Boolean | DataObject |
Method | Defined By | ||
---|---|---|---|
fireUpdateEvent(property:String, oldValue:Object, newValue:Object):void
Called to fire an update event if the value is changed. | DataObject |
isUnset | property |
isUnset:Boolean
Indicates whether the contained value(s) or the data properties of this object are unset. The notion of unset is synonymous with unspecified or invalid.
public function get isUnset():Boolean
public function set isUnset(value:Boolean):void
sourceInfo_ | property |
sourceInfo_:SourceInfo
Source information containing extra details for this reference.
public function get sourceInfo_():SourceInfo
public function set sourceInfo_(value:SourceInfo):void
DataObject | () | Constructor |
public function DataObject()
addEventListener | () | method |
public function addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Parameters
type:String | |
listener:Function | |
useCapture:Boolean (default = false )
| |
priority:int (default = 0 )
| |
useWeakReference:Boolean (default = false )
|
See also
dispatchEvent | () | method |
public function dispatchEvent(evt:Event):Boolean
Parameters
evt:Event |
Boolean |
See also
fireUpdateEvent | () | method |
protected function fireUpdateEvent(property:String, oldValue:Object, newValue:Object):void
Called to fire an update event if the value is changed.
Parameters
property:String — The property name.
| |
oldValue:Object — The old value.
| |
newValue:Object — The new value.
|
hasEventListener | () | method |
public function hasEventListener(type:String):Boolean
Parameters
type:String |
Boolean |
See also
removeEventListener | () | method |
public function removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Parameters
type:String | |
listener:Function | |
useCapture:Boolean (default = false )
|
See also
willTrigger | () | method |
public function willTrigger(type:String):Boolean
Parameters
type:String |
Boolean |
See also