You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by di...@apache.org on 2006/10/24 15:10:22 UTC

svn commit: r467325 - /webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/SchemaBuilder.java

Author: dims
Date: Tue Oct 24 06:10:21 2006
New Revision: 467325

URL: http://svn.apache.org/viewvc?view=rev&rev=467325
Log:
Fix for WSCOMMONS-112 - Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap

Modified:
    webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/SchemaBuilder.java

Modified: webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/SchemaBuilder.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/SchemaBuilder.java?view=diff&rev=467325&r1=467324&r2=467325
==============================================================================
--- webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/SchemaBuilder.java (original)
+++ webservices/commons/trunk/modules/XmlSchema/src/main/java/org/apache/ws/commons/schema/SchemaBuilder.java Tue Oct 24 06:10:21 2006
@@ -483,7 +483,7 @@
         }
 
         //process extra attributes and elements
-        processExtensibilityComponents(simpleType,schemaEl);
+        processExtensibilityComponents(simpleType,simpleEl);
 
         return simpleType;
     }
@@ -645,7 +645,7 @@
         }
 
         //process extra attributes and elements
-        processExtensibilityComponents(ct,schemaEl);
+        processExtensibilityComponents(ct,complexEl);
 
         return ct;
     }
@@ -1603,7 +1603,7 @@
                             validator);
         }
         //process extra attributes and elements
-        processExtensibilityComponents(include,schemaEl);
+        processExtensibilityComponents(include,includeEl);
         return include;
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org