| Package | vegas.vo |
| Class | public class SimpleValueObject |
| Inheritance | SimpleValueObject Object |
| Implements | Equatable, Serializable, ValueObject |
| Subclasses | CameraVO, Caption, CuePoint, FilterVO, FLVMetaData, MicrophoneVO, NetServerInfoVO, ObjectResource |
| Property | Defined By | ||
|---|---|---|---|
| id : *
Indicates the id of this ValueObject. | SimpleValueObject | ||
| Method | Defined By | ||
|---|---|---|---|
SimpleValueObject(init:Object = null)
Creates a new SimpleValueObject instance. | SimpleValueObject | ||
equals(o:*):Boolean
Compares the specified object with this object for equality. | SimpleValueObject | ||
formatToString(className:String = null, ... args):String
A utility function for implementing the toString() method. | SimpleValueObject | ||
toObject():Object
Returns the Object representation of this object. | SimpleValueObject | ||
toSource(indent:int = 0):String
Returns the source code string representation of the object. | SimpleValueObject | ||
toString():String
Returns the String representation of this object. | SimpleValueObject | ||
| id | property |
id:*Indicates the id of this ValueObject.
public function get id():* public function set id(value:any):void| SimpleValueObject | () | Constructor |
public function SimpleValueObject(init:Object = null)Creates a new SimpleValueObject instance.
Parametersinit:Object (default = null) — A generic object containing properties with which to populate the newly instance. If this argument is null, it is ignored.
|
| equals | () | method |
public function equals(o:*):BooleanCompares the specified object with this object for equality. This method compares the ids of the objects.
Parameters
o:* |
Boolean — true if the the specified object is equal with this object.
|
| formatToString | () | method |
public function formatToString(className:String = null, ... args):StringA utility function for implementing the toString() method. Overriding the toString() method is recommended, but not required.
Parameters
className:String (default = null) | |
... args |
String |
| toObject | () | method |
public function toObject():ObjectReturns the Object representation of this object.
ReturnsObject — the Object representation of this object.
|
| toSource | () | method |
public function toSource(indent:int = 0):StringReturns the source code string representation of the object.
Parameters
indent:int (default = 0) |
String — the source code string representation of the object.
|
| toString | () | method |
public function toString():String
Returns the String representation of this object.
String — the String representation of this object.
|