java.lang.reflect.Member (JDK 1.1)
This interface defines the methods shared by all members (fields, methods, and constructors) of a class. getName() returns the name of the member, getModifiers() returns its modifiers, and getDeclaringClass() returns the Class object that represents the class of which the member is a part.
public abstract interfaceMember{ //Constantspublic static final intDECLARED; public static final intPUBLIC; //Public Instance Methodspublic abstract ClassgetDeclaringClass(); public abstract intgetModifiers(); public abstract StringgetName(); }
Implemented By:
Constructor, Field, Method