| Package | vegas |
| Class | public class CoreObject |
| Inheritance | CoreObject Object |
| Implements | Loggable, Serializable |
| Subclasses | AbstractController |
Example :
import vegas.core.CoreObject ;
var core:CoreObject = new CoreObject() ;
trace("core : " + core) ;
trace("toSource : " + core.toSource()) ;
| Property | Defined By | ||
|---|---|---|---|
| logger : Logger
Determinates the internal Logger reference of this Loggable object. | CoreObject | ||
| Method | Defined By | ||
|---|---|---|---|
Creates a new CoreObject instance. | CoreObject | ||
toSource(indent:int = 0):String
Returns the string representation the source code of the object. | CoreObject | ||
toString():String
Returns the string representation of this instance. | CoreObject | ||
| logger | property |
logger:Logger
Determinates the internal Logger reference of this Loggable object.
public function get logger():Logger public function set logger(value:Logger):void| CoreObject | () | Constructor |
public function CoreObject()Creates a new CoreObject instance.
| toSource | () | method |
public function toSource(indent:int = 0):StringReturns the string representation the source code of the object.
Parameters
indent:int (default = 0) |
String — the string representation the source code of the object.
|
| toString | () | method |
public function toString():StringReturns the string representation of this instance.
ReturnsString — the string representation of this instance.
|