Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 87718 invoked from network); 8 Sep 2004 10:52:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 8 Sep 2004 10:52:26 -0000 Received: (qmail 76308 invoked by uid 500); 8 Sep 2004 10:52:25 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 76231 invoked by uid 500); 8 Sep 2004 10:52:24 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 76219 invoked by uid 99); 8 Sep 2004 10:52:24 -0000 X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 08 Sep 2004 03:52:24 -0700 Received: (qmail 87683 invoked by uid 65534); 8 Sep 2004 10:52:23 -0000 Date: 8 Sep 2004 10:52:23 -0000 Message-ID: <20040908105223.87680.qmail@minotaur.apache.org> From: mpo@apache.org To: cvs@cocoon.apache.org Subject: svn commit: rev 43531 - cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/binding X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: mpo Date: Wed Sep 8 03:52:21 2004 New Revision: 43531 Modified: cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/binding/JXPathBindingBuilderBase.java Log: Allowing custom builders access to CommonAttributes from outside the package. Modified: cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/binding/JXPathBindingBuilderBase.java ============================================================================== --- cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/binding/JXPathBindingBuilderBase.java (original) +++ cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/binding/JXPathBindingBuilderBase.java Wed Sep 8 03:52:21 2004 @@ -32,7 +32,7 @@ * which means: "continue in same leniency-mode as parent" * * - * @version CVS $Id: JXPathBindingBuilderBase.java,v 1.3 2004/04/01 12:59:57 mpo Exp $ + * @version CVS $Id$ */ public abstract class JXPathBindingBuilderBase implements LogEnabled { @@ -92,7 +92,7 @@ * @return an instance of CommonAttributes * @throws BindingException */ - static CommonAttributes getCommonAttributes(Element bindingElm) throws BindingException { + protected static CommonAttributes getCommonAttributes(Element bindingElm) throws BindingException { try { //TODO: should we eventually remove this? //throw an error if people are still using the old-style @read-only or @readonly @@ -122,7 +122,7 @@ * member fields indicating the activity of the sepearate load and save * actions of a given binding. */ - static class CommonAttributes{ + protected static class CommonAttributes{ /** * Flag which controls whether a binding is active during loading. */