Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 33107 invoked from network); 8 Jul 2010 09:05:07 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Jul 2010 09:05:07 -0000 Received: (qmail 12819 invoked by uid 500); 8 Jul 2010 09:05:06 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 12481 invoked by uid 500); 8 Jul 2010 09:05:03 -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 12471 invoked by uid 99); 8 Jul 2010 09:05:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 09:05:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Thu, 08 Jul 2010 09:05:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5A2D2238899C; Thu, 8 Jul 2010 09:04:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r961648 - /commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/AnnotationRuleProviderFactory.java Date: Thu, 08 Jul 2010 09:04:07 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100708090407.5A2D2238899C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Thu Jul 8 09:04:07 2010 New Revision: 961648 URL: http://svn.apache.org/viewvc?rev=961648&view=rev Log: added exception on method signature minor javadoc Modified: commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/AnnotationRuleProviderFactory.java Modified: commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/AnnotationRuleProviderFactory.java URL: http://svn.apache.org/viewvc/commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/AnnotationRuleProviderFactory.java?rev=961648&r1=961647&r2=961648&view=diff ============================================================================== --- commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/AnnotationRuleProviderFactory.java (original) +++ commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/AnnotationRuleProviderFactory.java Thu Jul 8 09:04:07 2010 @@ -35,10 +35,12 @@ public interface AnnotationRuleProviderF * @param * @param * @param - * @param type - * @return + * @param type the class of the object to be returned. + * @return an instance of the specified class. + * @throws DigesterLoadingException if any error occurs while creating the + * {@code type} instance. */ - AnnotationRuleProvider newInstance(Class> type); + AnnotationRuleProvider newInstance(Class> type) throws DigesterLoadingException; }