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 E046172AD for ; Sat, 5 Nov 2011 10:00:06 +0000 (UTC) Received: (qmail 50848 invoked by uid 500); 5 Nov 2011 10:00:06 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 50692 invoked by uid 500); 5 Nov 2011 10:00:06 -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 50685 invoked by uid 99); 5 Nov 2011 10:00:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Nov 2011 10:00:06 +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; Sat, 05 Nov 2011 10:00:04 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 37BD723889EA for ; Sat, 5 Nov 2011 09:59:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1197913 - /commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml Date: Sat, 05 Nov 2011 09:59:43 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111105095943.37BD723889EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Sat Nov 5 09:59:42 2011 New Revision: 1197913 URL: http://svn.apache.org/viewvc?rev=1197913&view=rev Log: fixed apidocs links Modified: commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml Modified: commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml?rev=1197913&r1=1197912&r2=1197913&view=diff ============================================================================== --- commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml (original) +++ commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml Sat Nov 5 09:59:42 2011 @@ -25,7 +25,7 @@ limitations under the License.

One of the known limit of the old Digester releases is that the - ObjectCreateRule works just with + ObjectCreateRule works just with the default empty constructor.

One limit that cannot be exceeded is the fact that constructor arguments cannot be extracted from inner XML elements; that's because the ObjectCreateRule creates the object when the related XML @@ -78,9 +78,9 @@ digester.addRule( "root/bean", createRul -

Since 3.2, ObjectCreate +

Since 3.2, ObjectCreate can be used to annotate constructors as well; with the introduction of - Attribute annotation, + Attribute annotation, constructor based rules can be expressed like:

class MyBean {