Packageorg.spicefactory.lib.reflect.provider
Interfacepublic interface ClassInfoProvider
Implementors JsonClassInfoProvider, XmlClassInfoProvider

Provides reflection information for a particular type. This interface abstracts the actual mechanism used under the hood (e.g. the old XML-based describeType or the newer JSON based one).



Public Properties
 PropertyDefined By
  instanceInfo : Object
[read-only] The reflection information about the instance.
ClassInfoProvider
  staticInfo : Object
[read-only] The information about static properties and methods.
ClassInfoProvider
Property Detail
instanceInfoproperty
instanceInfo:Object  [read-only]

The reflection information about the instance. The format of the untyped object is identical with the format used in describeTypeJSON in Flash Player 10.1 or newer.


Implementation
    public function get instanceInfo():Object
staticInfoproperty 
staticInfo:Object  [read-only]

The information about static properties and methods. The format of the untyped object is identical with the format used in describeTypeJSON in Flash Player 10.1 or newer.


Implementation
    public function get staticInfo():Object