fEmptySymbol = fSymbolTable.addSymbol("");
fXmlSymbol = fSymbolTable.addSymbol("xml");
fXmlnsSymbol = fSymbolTable.addSymbol("xmlns");
// use shared context
NamespaceContext context = fNamespaceContext;
while (context != null) {
int count = context.getDeclaredPrefixCount();
for (int i = 0; i < count; i++) {
String prefix = context.getDeclaredPrefixAt(i);
if (fNamespaceSupport.getURI(prefix) == null) {
String uri = context.getURI(prefix);
fNamespaceSupport.declarePrefix(prefix, uri);
}
}
context = context.getParentContext();
}
} // reset(XMLComponentManager)