Packageorg.spicefactory.lib.reflect
Classpublic class Member
InheritanceMember Inheritance MetadataAware
SubclassesFunctionBase, Property

Represents a named member of a Class (a Constructor, Property or Method).



Public Properties
 PropertyDefined by
  name : String
[read-only] The name of this member.
Member
  owner : ClassInfo
[read-only] The owner of this member.
Member
Public Methods
 MethodDefined by
 Inherited
Returns all metadata tags for this type in no particular order.
MetadataAware
 Inherited
getMetadata(type:Object):Array
Returns all metadata tags for the specified type for this element.
MetadataAware
Property detail
nameproperty
name:String  [read-only]

The name of this member. For Constructors the value is the same as the name of the class the Constructor belongs to (not fully qualified). Otherwise the value is simply the name of the method or property.

Implementation
    public function get name():String
ownerproperty 
owner:ClassInfo  [read-only]

The owner of this member. The owner is the Class that was reflected on to retrieve an instance of this Member. This may differ from the Class that this Member is declared on which may be a supertype. The declaredBy attribute provided by the describeType method is currently ignored for consistency reasons, since it is not provided for all Member types.

Implementation
    public function get owner():ClassInfo