/[classpath]/classpath/vm/reference/java/lang/reflect/Method.java
ViewVC logotype

Diff of /classpath/vm/reference/java/lang/reflect/Method.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12.2.4 by jfrijters, Mon Sep 26 11:43:39 2005 UTC revision 1.12.2.5 by gnu_andrew, Wed Sep 28 17:50:22 2005 UTC
# Line 96  extends AccessibleObject implements Memb Line 96  extends AccessibleObject implements Memb
96     * is a non-inherited member.     * is a non-inherited member.
97     * @return the class that declared this member     * @return the class that declared this member
98     */     */
99    public Class getDeclaringClass()    public Class<?> getDeclaringClass()
100    {    {
101      return declaringClass;      return declaringClass;
102    }    }
# Line 133  extends AccessibleObject implements Memb Line 133  extends AccessibleObject implements Memb
133     *     *
134     * @return a list of the types of the method's parameters     * @return a list of the types of the method's parameters
135     */     */
136    public native Class[] getParameterTypes();    public native Class<?>[] getParameterTypes();
137    
138    /**    /**
139     * Get the exception types this method says it throws, in no particular     * Get the exception types this method says it throws, in no particular
# Line 142  extends AccessibleObject implements Memb Line 142  extends AccessibleObject implements Memb
142     *     *
143     * @return a list of the types in the method's throws clause     * @return a list of the types in the method's throws clause
144     */     */
145    public native Class[] getExceptionTypes();    public native Class<?>[] getExceptionTypes();
146    
147    /**    /**
148     * Compare two objects to see if they are semantically equivalent.     * Compare two objects to see if they are semantically equivalent.

Legend:
Removed from v.1.12.2.4  
changed lines
  Added in v.1.12.2.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26