Packageandromeda.vo
Classpublic class SimpleValueObject
InheritanceSimpleValueObject Inheritance CoreObject
ImplementsEquatable, IValueObject
SubclassesAbstractValueObject, CameraVO, CuePoint, FilterVO, FLVMetaData, MicrophoneVO, NetServerInfoVO, ObjectResource

The SimpleValueObject class provides a basic implementation of the IValueObject interface.



Public Properties
 PropertyDefined by
  id : *
(read-write) Indicates the id of this IValueObject.
SimpleValueObject
Public Methods
 MethodDefined by
  
SimpleValueObject(init:Object = null)
Creates a new SimpleValueObject instance.
SimpleValueObject
  
equals(o:*):Boolean
Compares the specified object with this object for equality.
SimpleValueObject
 Inherited
Returns the internal ILogger reference of this ILogable object.
CoreObject
 Inherited
hashCode():uint
Returns a hashcode value for the object.
CoreObject
 Inherited
setLogger(log:ILogger = null):void
Sets the internal ILogger reference of this ILogable object.
CoreObject
 Inherited
toSource(indent:int = 0):String
Returns the string representation the source code of the object.
CoreObject
  
toString():String
Returns the String representation of this object.
SimpleValueObject
Property detail
idproperty
id:*  [read-write]

(read-write) Indicates the id of this IValueObject.

Implementation
    public function get id():*
    public function set id(value:*):void
Constructor detail
SimpleValueObject()constructor
public function SimpleValueObject(init:Object = null)

Creates a new SimpleValueObject instance.

Parameters
init:Object (default = null) — A generic object containing properties with which to populate the newly instance. If this argument is null, it is ignored.
Method detail
equals()method
public function equals(o:*):Boolean

Compares the specified object with this object for equality. This method compares the ids of the objects with the Identifiable.getID() method.

Parameters
o:*

Returns
Booleantrue if the the specified object is equal with this object.
toString()method 
public override function toString():String

Returns the String representation of this object.

Returns
String — the String representation of this object.