org.as2lib.core.BasicClass +--org.as2lib.core.ObjectStringifier
Stringifier
ObjectStringifier
is the most basic stringifier form.
It stringifies all kinds of objects, this means classes, instances and primitives.
public function execute(target):String
Returns the string representation of the passed-in target
object.
The string representation is composed as follows:
[type theFullQualifiedNameOfTheObjectsType]
The string representation of the class org.as2lib.core.BasicClass
or
instances of it looks like this:
[type org.as2lib.core.BasicClass]
target | the target object to stringify |
the string representation of the passed-in target
object