Package | com.vmware.core.model |
Class | public class BooleanDataObject |
Inheritance | BooleanDataObject ![]() ![]() |
Implements | flash.utils.IExternalizable |
Property | Defined By | ||
---|---|---|---|
isUnset : Boolean [override]
Indicates whether the contained value(s) or the data properties of this
object are unset. | BooleanDataObject | ||
![]() | sourceInfo_ : SourceInfo
Source information containing extra details for this reference. | DataObject | |
value : Boolean
Returns the value wrapped in the DataObject. | BooleanDataObject |
Method | Defined By | ||
---|---|---|---|
BooleanDataObject | |||
![]() | 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. | BooleanDataObject | ||
![]() | dispatchEvent(evt:Event):Boolean | DataObject | |
![]() | hasEventListener(type:String):Boolean | DataObject | |
isEquivalent(other:BooleanDataObject):Boolean
Determine if this BooleanDataObject is equivalent to another. | BooleanDataObject | ||
readExternal(input:IDataInput):void
Called to read the property values from the input stream. | BooleanDataObject | ||
![]() | removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void | DataObject | |
![]() | willTrigger(type:String):Boolean | DataObject | |
writeExternal(output:IDataOutput):void
Called to store the property values to the output stream. | BooleanDataObject |
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:Boolean
Returns the value wrapped in the DataObject.
public function get value():Boolean
public function set value(value:Boolean):void
BooleanDataObject | () | Constructor |
public function BooleanDataObject()
createNewInstance | () | method |
public static function createNewInstance(value:Boolean, provider:IResourceReference):BooleanDataObject
Creates a new instance with the given value and provider.
Parameters
value:Boolean — Value to wrap.
| |
provider:IResourceReference — Server object the value comes from.
|
BooleanDataObject —
The newly created instance.
|
isEquivalent | () | method |
public function isEquivalent(other:BooleanDataObject):Boolean
Determine if this BooleanDataObject
is equivalent to another.
Parameters
other:BooleanDataObject — The other BooleanDataObject to compare with.
|
Boolean —
True if the objects are equivalent, otherwise false
|
readExternal | () | method |
public function readExternal(input:IDataInput):void
Called to read the property values from the input stream.
Parameters
input:IDataInput — The input stream to read data.
|
writeExternal | () | method |
public function writeExternal(output:IDataOutput):void
Called to store the property values to the output stream.
Parameters
output:IDataOutput — The output stream to write data.
|