Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 60460635C for ; Tue, 14 Jun 2011 14:17:20 +0000 (UTC) Received: (qmail 81600 invoked by uid 500); 14 Jun 2011 14:17:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 81549 invoked by uid 500); 14 Jun 2011 14:17:20 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 81542 invoked by uid 99); 14 Jun 2011 14:17:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2011 14:17:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2011 14:17:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 17A3B2388A33; Tue, 14 Jun 2011 14:16:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1135592 - /commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinderImpl.java Date: Tue, 14 Jun 2011 14:16:56 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110614141657.17A3B2388A33@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Tue Jun 14 14:16:56 2011 New Revision: 1135592 URL: http://svn.apache.org/viewvc?rev=1135592&view=rev Log: filled missing javadoc Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinderImpl.java Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinderImpl.java URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinderImpl.java?rev=1135592&r1=1135591&r2=1135592&view=diff ============================================================================== --- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinderImpl.java (original) +++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinderImpl.java Tue Jun 14 14:16:56 2011 @@ -45,7 +45,7 @@ final class AnnotationHandlerBinderImpl */ public AnnotatedHandlerBuilder handleType() { - return this.handleElement( Class.class ); + return handleElement( Class.class ); } /** @@ -53,7 +53,7 @@ final class AnnotationHandlerBinderImpl */ public AnnotatedHandlerBuilder handleConstructor() { - return this.handleElement( Constructor.class ); + return handleElement( Constructor.class ); } /** @@ -61,7 +61,7 @@ final class AnnotationHandlerBinderImpl */ public AnnotatedHandlerBuilder handleField() { - return this.handleElement( Field.class ); + return handleElement( Field.class ); } /** @@ -69,7 +69,7 @@ final class AnnotationHandlerBinderImpl */ public AnnotatedHandlerBuilder handleMethod() { - return this.handleElement( Method.class ); + return handleElement( Method.class ); } /** @@ -115,7 +115,7 @@ final class AnnotationHandlerBinderImpl public AnnotationHandler getHandler( Class annotatedElementType, Class annotationType ) { - return this.registry.get( new Key( annotatedElementType, annotationType ) ); + return registry.get( new Key( annotatedElementType, annotationType ) ); } }