Index: luni-kernel/src/main/java/java/lang/reflect/Method.java =================================================================== --- luni-kernel/src/main/java/java/lang/reflect/Method.java (revision 410150) +++ luni-kernel/src/main/java/java/lang/reflect/Method.java (working copy) @@ -172,23 +172,23 @@ } /** - * Return the java.lang.Class associated with the class that defined this + * Return the {@link Class} associated with the class that defined this * method. * * @return the declaring class */ - public Class getDeclaringClass() { + public Class getDeclaringClass() { return null; } /** - * Return an array of the java.lang.Class objects associated with the + * Return an array of the {@link Class} objects associated with the * exceptions declared to be thrown by this method. If the method was not * declared to throw any exceptions, the array returned will be empty. * * @return the declared exception classes */ - public Class[] getExceptionTypes() { + public Class[] getExceptionTypes() { return null; } @@ -213,23 +213,23 @@ } /** - * Return an array of the java.lang.Class objects associated with the + * Return an array of the {@link Class} objects associated with the * parameter types of this method. If the method was declared with no * parameters, the array returned will be empty. * * @return the parameter types */ - public Class[] getParameterTypes() { + public Class[] getParameterTypes() { return null; } /** - * Return the java.lang.Class associated with the return type of this + * Return the {@link Class} associated with the return type of this * method. * * @return the return type */ - public Class getReturnType() { + public Class getReturnType() { return null; } Index: luni-kernel/src/main/java/java/lang/reflect/Field.java =================================================================== --- luni-kernel/src/main/java/java/lang/reflect/Field.java (revision 410150) +++ luni-kernel/src/main/java/java/lang/reflect/Field.java (working copy) @@ -193,12 +193,12 @@ IllegalArgumentException; /** - * Return the java.lang.Class associated with the class that defined this + * Return the {@link Class} associated with the class that defined this * field. * * @return the declaring class */ - public Class getDeclaringClass() { + public Class getDeclaringClass() { return null; } @@ -354,11 +354,11 @@ native String getSignature(); /** - * Return the java.lang.Class associated with the type of this field. + * Return the {@link Class} associated with the type of this field. * * @return the type */ - public Class getType() { + public Class getType() { return null; }