Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.lang.reflect.Method

Availability: JDK 1.1

public final class Method extends Object implements Member {
   // No Constructor
   // Public Instance Methods
      public boolean equals(Object obj);  // Overrides Object.equals()
      public Class getDeclaringClass();
      public Class[] getExceptionTypes();
      public native int getModifiers();
      public String getName();
      public Class[] getParameterTypes();
      public Class getReturnType();
      public int hashCode();  // Overrides Object.hashCode()
      public native Object invoke(Object obj, Object[] args) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException;
      public String toString();  // Overrides Object.toString()
}
Passed To:
EventSetDescriptor.EventSetDescriptor(), IndexedPropertyDescriptor.IndexedPropertyDescriptor(), MethodDescriptor.MethodDescriptor(), PropertyDescriptor.PropertyDescriptor().
Returned By:
Class.getDeclaredMethod(), Class.getDeclaredMethods(), Class.getMethod(), Class.getMethods(), EventSetDescriptor.getAddListenerMethod(), EventSetDescriptor.getListenerMethods(), EventSetDescriptor.getRemoveListenerMethod(), IndexedPropertyDescriptor.getIndexedReadMethod(), IndexedPropertyDescriptor.getIndexedWriteMethod(), MethodDescriptor.getMethod(), PropertyDescriptor.getReadMethod(), PropertyDescriptor.getWriteMethod().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.