Package | com.cyntaxic.cyntils |
Class | public class CynObject |
Inheritance | CynObject Object |
CynObject
class contains static functions for
getting information on objects.
Method | Defined By | ||
---|---|---|---|
getClassName(object:Object):String [static]
Gets the classname of the object. | CynObject | ||
getObjectName(object:Object):String [static]
Gets name of object similar to how toString works. | CynObject | ||
getObjectSuperClassName(object:Object):String [static]
Gets name of the object's superclass similar to how toString works. | CynObject | ||
getSuperClassName(object:Object):String [static]
Gets the classname of the object's superclass. | CynObject |
getClassName | () | method |
public static function getClassName(object:Object):String
Gets the classname of the object.
Parameters
object:Object — The object to name.
|
String — A string of the class name.
|
getObjectName | () | method |
public static function getObjectName(object:Object):String
Gets name of object similar to how toString
works.
Parameters
object:Object — The object to name.
|
String — A bracketed object string name.
|
getObjectSuperClassName | () | method |
public static function getObjectSuperClassName(object:Object):String
Gets name of the object's superclass similar to how toString
works.
Parameters
object:Object — The object to name.
|
String — A bracketed object string name.
|
getSuperClassName | () | method |
public static function getSuperClassName(object:Object):String
Gets the classname of the object's superclass.
Parameters
object:Object — The object to name.
|
String — A string of the superclass name.
|