Package | com.vmware.core.model |
Class | public class UintDataObject |
Inheritance | UintDataObject ![]() ![]() |
Property | Defined By | ||
---|---|---|---|
isUnset : Boolean [override]
Indicates whether the contained value(s) or the data properties of this
object are unset. | UintDataObject | ||
![]() | sourceInfo_ : SourceInfo
Source information containing extra details for this reference. | DataObject | |
value : uint
Returns the value wrapped in the DataObject. | UintDataObject |
Method | Defined By | ||
---|---|---|---|
UintDataObject | |||
![]() | addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void | DataObject | |
[static]
Creates a new instance with the given value and provider. | UintDataObject | ||
![]() | 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 |
isUnset | property |
isUnset:Boolean
[override] 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.
This property can be used as the source for data binding.
public function get isUnset():Boolean
public function set isUnset(value:Boolean):void
value | property |
value:uint
Returns the value wrapped in the DataObject.
public function get value():uint
public function set value(value:uint):void
UintDataObject | () | Constructor |
public function UintDataObject()
createNewInstance | () | method |
public static function createNewInstance(value:uint, provider:IResourceReference):UintDataObject
Creates a new instance with the given value and provider.
Parameters
value:uint — Value to wrap.
| |
provider:IResourceReference — Server object the value comes from.
|
UintDataObject —
The newly created instance.
|