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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]