Package | com.ericfeminella.utils.introspection |
Interface | public interface IInspectable |
Implementors | ConfigurableContextMenu |
A class which implements IInspectable is expected to provide a static 'info' method which returns an XML object created by flash.utils.describeType.
A typical implementation would be as follows:
package { import flash.utils.describeType; public class Example implements IInspectable { public static function info():XML { return describeType(Example); } | }