TypeMemberInfo represents a type member.
Type members are methods, implicit get/set methods (referred to as properties) and variables (not supported right now).
Class or instance variables are not supported because they can only be evaluated if they got initialized previously. Therefore results could vary dramatically.
public function getFullName(Void):StringReturns the full name of this type member.
The full name is the name of this type member plus the fully qualified name of the declaring type.
the full name of this type member
public function getDeclaringType(Void):TypeInfoReturns the declaring type of this type member.
this type member's declaring type
public function isStatic(Void):BooleanReturns whether this type member is static or not.
Static type members are members per type. Speaking of classes static type members are class variables or class methods.
Non-Static type members are members per instance. For example instance variables or instance methods.
true if this type member is static else false