Packagecom.vmware.core.model
Classpublic class BooleanDataObject
InheritanceBooleanDataObject Inheritance DataObject Inheritance Object
Implements flash.utils.IExternalizable

DataObject wrapper for a Boolean value.



Public Properties
 PropertyDefined By
  isUnset : Boolean
[override] Indicates whether the contained value(s) or the data properties of this object are unset.
BooleanDataObject
 InheritedsourceInfo_ : SourceInfo
Source information containing extra details for this reference.
DataObject
  value : Boolean
Returns the value wrapped in the DataObject.
BooleanDataObject
Public Methods
 MethodDefined By
  
BooleanDataObject
 Inherited
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
 Inherited
dispatchEvent(evt:Event):Boolean
DataObject
 Inherited
hasEventListener(type:String):Boolean
DataObject
  
Determine if this BooleanDataObject is equivalent to another.
BooleanDataObject
  
readExternal(input:IDataInput):void
Called to read the property values from the input stream.
BooleanDataObject
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
DataObject
 Inherited
willTrigger(type:String):Boolean
DataObject
  
writeExternal(output:IDataOutput):void
Called to store the property values to the output stream.
BooleanDataObject
Protected Methods
 MethodDefined By
 Inherited
fireUpdateEvent(property:String, oldValue:Object, newValue:Object):void
Called to fire an update event if the value is changed.
DataObject
Property Detail
isUnsetproperty
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.


Implementation
    public function get isUnset():Boolean
    public function set isUnset(value:Boolean):void
valueproperty 
value:Boolean

Returns the value wrapped in the DataObject.


Implementation
    public function get value():Boolean
    public function set value(value:Boolean):void
Constructor Detail
BooleanDataObject()Constructor
public function BooleanDataObject()



Method Detail
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.

Returns
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.

Returns
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.