Packagecom.vmware.core.model
Classpublic class ArrayDataObject
InheritanceArrayDataObject Inheritance DataObject Inheritance Object
Implements flash.utils.IExternalizable

DataObject wrapper for a Array value.



Public Properties
 PropertyDefined By
  isUnset : Boolean
[override] Indicates whether the contained value(s) or the data properties of this object are unset.
ArrayDataObject
 InheritedsourceInfo_ : SourceInfo
Source information containing extra details for this reference.
DataObject
  value : Array
Returns the value wrapped in the DataObject.
ArrayDataObject
Public Methods
 MethodDefined By
  
ArrayDataObject
 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.
ArrayDataObject
 Inherited
dispatchEvent(evt:Event):Boolean
DataObject
 Inherited
hasEventListener(type:String):Boolean
DataObject
  
readExternal(input:IDataInput):void
Called to read the property values from the input stream.
ArrayDataObject
 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.
ArrayDataObject
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.


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

Returns the value wrapped in the DataObject.


Implementation
    public function get value():Array
    public function set value(value:Array):void
Constructor Detail
ArrayDataObject()Constructor
public function ArrayDataObject()



Method Detail
createNewInstance()method
public static function createNewInstance(value:Array, provider:IResourceReference = null):ArrayDataObject

Creates a new instance with the given value and provider.

Parameters

value:Array — Value to wrap.
 
provider:IResourceReference (default = null) — Server object the value comes from.

Returns
ArrayDataObject — The newly created instance.
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.