}
//-- namespace declarations
Namespaces namespaces = schema.getNamespaces();
Enumeration keys = namespaces.getLocalNamespacePrefixes();
while (keys.hasMoreElements()) {
String nsPrefix = (String)keys.nextElement();
if (!nsPrefix.equals(schemaPrefix)) {
String ns = namespaces.getNamespaceURI(nsPrefix);
if (nsPrefix.length() > 0) {
_atts.addAttribute(XMLNS_PREFIX + nsPrefix, CDATA, ns);
}
else {
_atts.addAttribute(XMLNS_DEFAULT, CDATA, ns);