You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by mp...@apache.org on 2004/09/08 12:52:23 UTC

svn commit: rev 43531 - cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/binding

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" </li>
  * </ul>
  *
- * @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.
          */