inline bool SchemaInfo::isImportingNS(const int namespaceURI) { if (!fImportedNSList) return false; return (fImportedNSList->containsElement(namespaceURI)); }
inline bool SchemaInfo::isFailedRedefine(const DOMElement* const anElem) { if (fFailedRedefineList) return (fFailedRedefineList->containsElement(anElem)); return false; }
inline void SchemaInfo::addImportedNS(const int namespaceURI) { if (!fImportedNSList) { fImportedNSList = new ValueVectorOf<int>(4); } if (!fImportedNSList->containsElement(namespaceURI)) fImportedNSList->addElement(namespaceURI); }