public class ASObject extends Object
Object
class. ActionScript
Object
instance is a map from String
(called
key) to Object
(called value), which is written as a literal
like {id:123, mes:'Hello'}
. The value for a given key is
obtained by get(java.lang.String)
method. For the example above,
get("id")==123
and get("mes")=="Hello"
holds.
ASObject instance cannot be created by its constructor. The instance is
internally created by ASDeserializer.deserialize()
method.ASDeserializer