Author: scheu
Date: Tue Feb 20 11:00:05 2007
New Revision: 509707

URL: http://svn.apache.org/viewvc?view=rev&rev=509707
Log:
WSCOMMONS-170
Contributor: Rich Scheuerle
Small change to OMSourcedElementImpl to prevent upward propogation of done flag.

Modified:
    
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java

Modified: 
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java?view=diff&rev=509707&r1=509706&r2=509707
==============================================================================
--- 
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java
 (original)
+++ 
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMSourcedElementImpl.java
 Tue Feb 20 11:00:05 2007
@@ -824,4 +824,14 @@
        public OMDataSource getDataSource() {
                return dataSource;
        }
+    
+    /**
+     * setComplete override
+     * The OMSourcedElement has its own isolated builder/reader during the 
expansion process.
+     * Thus calls to setCompete should stop here and not propogate up to the 
+     * parent (which may have a different builder or no builder).
+     */
+    public void setComplete(boolean value) {
+        done = value;
+    }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to