Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 34736 invoked from network); 2 Jun 2006 09:00:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Jun 2006 09:00:22 -0000 Received: (qmail 95190 invoked by uid 500); 2 Jun 2006 09:00:22 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 95146 invoked by uid 500); 2 Jun 2006 09:00:22 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 95133 invoked by uid 99); 2 Jun 2006 09:00:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jun 2006 02:00:21 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jun 2006 02:00:20 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id EAD8E1A983A; Fri, 2 Jun 2006 01:59:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r411099 - in /incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect: Field.java Method.java Date: Fri, 02 Jun 2006 08:59:59 -0000 To: harmony-commits@incubator.apache.org From: mloenko@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060602085959.EAD8E1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mloenko Date: Fri Jun 2 01:59:58 2006 New Revision: 411099 URL: http://svn.apache.org/viewvc?rev=411099&view=rev Log: fixes for HARMONY-524 [classlib][luni-kernel] java.lang.reflect Field and Method generification Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Field.java incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Method.java Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Field.java URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Field.java?rev=411099&r1=411098&r2=411099&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Field.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Field.java Fri Jun 2 01:59:58 2006 @@ -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; } Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Method.java URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Method.java?rev=411099&r1=411098&r2=411099&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Method.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/luni-kernel/src/main/java/java/lang/reflect/Method.java Fri Jun 2 01:59:58 2006 @@ -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; }