diff options
author | linimon <linimon@FreeBSD.org> | 2004-04-09 13:54:59 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-04-09 13:54:59 +0800 |
commit | 5ca1fd3c62d9f79e2feae8b923041382fa8693fc (patch) | |
tree | 1efcbf220660758573c3bdab54210b8ec40abcf3 /textproc | |
parent | 9b547b7e5dced9e5c0a56182d6e2b4ed91087ba5 (diff) | |
download | freebsd-ports-gnome-5ca1fd3c62d9f79e2feae8b923041382fa8693fc.tar.gz freebsd-ports-gnome-5ca1fd3c62d9f79e2feae8b923041382fa8693fc.tar.zst freebsd-ports-gnome-5ca1fd3c62d9f79e2feae8b923041382fa8693fc.zip |
Update to version 2.6.2:
- Now using JAVAJARDIR instead of JAVASHAREDIR/classes
- Now using PORTDOCS macro (to reduce pkg-plist size and fix the apidocs
deinstall issue with some JDKs)
- Now using PLIST_FILES macro (thus no more pkg-plist)
- Now using MASTER_SITE_APACHE_XML/MASTER_SITE_SUBDIR
- Now using OPTIONS macro for a more flexible build/install:
- WITH_DEPRECATED_JARS: build and install deprecated JARs (default:
on, as some ports may depend on it)
- WITH_SAMPLES_JAR: build and install samples (default: off)
- bsd.java.mk 2.0 compliant
- ECHO -> ECHO_CMD
- explicit mkdir JAVAJARDIR (just in case)
- SIZE added to distinfo
- assign maintainership to submitter
PR: ports/51415
Submitted by: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/xerces-j/Makefile | 71 | ||||
-rw-r--r-- | textproc/xerces-j/distinfo | 6 | ||||
-rw-r--r-- | textproc/xerces-j/pkg-plist | 964 |
3 files changed, 51 insertions, 990 deletions
diff --git a/textproc/xerces-j/Makefile b/textproc/xerces-j/Makefile index 7c4a1dd7715c..57871fc87ac3 100644 --- a/textproc/xerces-j/Makefile +++ b/textproc/xerces-j/Makefile @@ -6,46 +6,69 @@ # PORTNAME= xerces-j -PORTVERSION= 2.2.0 -PORTREVISION= 1 +PORTVERSION= 2.6.2 CATEGORIES= textproc java -MASTER_SITES= http://xml.apache.org/dist/xerces-j/old_xerces2/ -DISTNAME= Xerces-J-src.${PORTVERSION} +MASTER_SITES= ${MASTER_SITE_APACHE_XML} +MASTER_SITE_SUBDIR= xerces-j/source +DISTFILES= Xerces-J-src.${PORTVERSION}${EXTRACT_SUFX} Xerces-J-tools.${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org COMMENT= XML parser for Java BUILD_DEPENDS= ${ANT}:${PORTSDIR}/devel/apache-ant -USE_JAVA= 1.3+ +USE_JAVA= yes +JAVA_VERSION= 1.3+ WRKSRC= ${WRKDIR}/xerces-${PORTVERSION:S/./_/g} + +OPTIONS= DEPRECATED_JARS "build/install the deprecated JARs" on \ + SAMPLES_JAR "build/install the samples" off + +.include <bsd.port.pre.mk> + ANT?= ${LOCALBASE}/bin/ant -.if defined(NOPORTDOCS) -ANT_TARGETS= jar apijar -.else -ANT_TARGETS= jar apijar javadocs -# We should install other documentation too, but -# we have no stylebook port yet -# -# ANT_TARGETS= jar apijar docs javadocs +ANT_TARGETS= jars +.if !defined(NOPORTDOCS) +ANT_TARGETS+= javadocs #docs +PORTDOCS= api dom3-api other xerces2 xni xs .endif -JAVASHAREDIR= ${PREFIX}/share/java -JARDIR= ${JAVASHAREDIR}/classes -JARFILES= xercesImpl.jar xmlParserAPIs.jar + +JARFILES+= xercesImpl.jar xml-apis.jar +.if defined(WITH_DEPRECATED_JARS) +ANT_TARGETS+= deprecatedjars +JARFILES+= xerces.jar xmlParserAPIs.jar resolver.jar +.endif +.if defined(WITH_SAMPLES_JAR) +JARFILES+= xercesSamples.jar +.endif + +PLIST_FILES+= ${JARFILES:S,^,${JAVAJARDIR:S,${PREFIX},,}/,} + +TOOLS_JARFILES= resolver.jar stylebook-1.0-b2.jar bin/xjavac.jar + +post-extract: + @cd ${WRKSRC} && ${MV} ../tools . do-build: - @cd ${WRKSRC} && ${ANT} ${ANT_TARGETS} + @cd ${WRKSRC} && ${SETENV} CLASSPATH=`echo ${TOOLS_JARFILES:S,^,tools/,} | ${TR} " " ":"` ${ANT} ${ANT_TARGETS} do-install: - @${ECHO} -n ">> Installing JAR files in ${JARDIR}..." - @cd ${WRKSRC}/build && ${CP} ${JARFILES} ${JARDIR}/ - @${ECHO} " [ DONE ]" + @${ECHO_CMD} -n ">> Installing JAR files in ${JAVAJARDIR}..." + @${MKDIR} ${JAVAJARDIR} +.for JARFILE in ${JARFILES} + @cd ${WRKSRC}/build && ${CP} ${JARFILE} ${JAVAJARDIR}/ + @${ECHO_CMD} -n " ${JARFILE}" +.endfor + @${ECHO_CMD} " [ DONE ]" .if !defined(NOPORTDOCS) - @${ECHO} -n ">> Installing documentation in ${DOCSDIR}..." + @${ECHO_CMD} -n ">> Installing documentation in ${DOCSDIR}..." @${MKDIR} ${DOCSDIR} - @${CP} -r ${WRKSRC}/build/docs/javadocs/* ${DOCSDIR} - @${ECHO} " [ DONE ]" +.for DOCFILE in ${PORTDOCS} + @cd ${WRKSRC}/build/docs/javadocs && ${CP} -r ${DOCFILE} ${DOCSDIR}/ + @${ECHO_CMD} -n " ${DOCFILE}" +.endfor + @${ECHO_CMD} " [ DONE ]" .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/textproc/xerces-j/distinfo b/textproc/xerces-j/distinfo index 28644e4e7e66..394301a793d2 100644 --- a/textproc/xerces-j/distinfo +++ b/textproc/xerces-j/distinfo @@ -1,2 +1,4 @@ -MD5 (Xerces-J-src.2.2.0.tar.gz) = a8ed81677a7f9c17160d4a9a6a5dcdc6 -SIZE (Xerces-J-src.2.2.0.tar.gz) = 1434016 +MD5 (Xerces-J-src.2.6.2.tar.gz) = cfd536b8d72f8ebe3465ae35f5e3775d +SIZE (Xerces-J-src.2.6.2.tar.gz) = 1612086 +MD5 (Xerces-J-tools.2.6.2.tar.gz) = 55ba4b71ae95acf7d50c4bc0d796ee76 +SIZE (Xerces-J-tools.2.6.2.tar.gz) = 3713041 diff --git a/textproc/xerces-j/pkg-plist b/textproc/xerces-j/pkg-plist deleted file mode 100644 index e82e744a00d5..000000000000 --- a/textproc/xerces-j/pkg-plist +++ /dev/null @@ -1,964 +0,0 @@ -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/XSGrammar.html -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/package-tree.html -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/package-frame.html -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/Grammar.html -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/XMLGrammarDescription.html -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/XMLGrammarLoader.html -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/XMLGrammarPool.html -share/doc/xerces-j/xni/org/apache/xerces/xni/grammars/package-summary.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLParseException.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/package-tree.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/package-frame.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLComponent.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLComponentManager.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDocumentFilter.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDocumentScanner.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDocumentSource.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDTDContentModelFilter.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDTDContentModelSource.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDTDFilter.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDTDScanner.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLDTDSource.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLEntityResolver.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLErrorHandler.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLParserConfiguration.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLPullParserConfiguration.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLInputSource.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/XMLConfigurationException.html -share/doc/xerces-j/xni/org/apache/xerces/xni/parser/package-summary.html -share/doc/xerces-j/xni/org/apache/xerces/xni/psvi/package-summary.html -share/doc/xerces-j/xni/org/apache/xerces/xni/psvi/package-tree.html -share/doc/xerces-j/xni/org/apache/xerces/xni/psvi/package-frame.html -share/doc/xerces-j/xni/org/apache/xerces/xni/psvi/AttributePSVI.html -share/doc/xerces-j/xni/org/apache/xerces/xni/psvi/ElementPSVI.html -share/doc/xerces-j/xni/org/apache/xerces/xni/psvi/ItemPSVI.html -share/doc/xerces-j/xni/org/apache/xerces/xni/Augmentations.html -share/doc/xerces-j/xni/org/apache/xerces/xni/NamespaceContext.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLAttributes.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLDocumentFragmentHandler.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLDocumentHandler.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLDTDContentModelHandler.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLDTDHandler.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLLocator.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLResourceIdentifier.html -share/doc/xerces-j/xni/org/apache/xerces/xni/QName.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XMLString.html -share/doc/xerces-j/xni/org/apache/xerces/xni/package-summary.html -share/doc/xerces-j/xni/org/apache/xerces/xni/XNIException.html -share/doc/xerces-j/xni/org/apache/xerces/xni/package-tree.html -share/doc/xerces-j/xni/org/apache/xerces/xni/package-frame.html -share/doc/xerces-j/xni/index-all.html -share/doc/xerces-j/xni/deprecated-list.html -share/doc/xerces-j/xni/allclasses-frame.html -share/doc/xerces-j/xni/index.html -share/doc/xerces-j/xni/packages.html -share/doc/xerces-j/xni/overview-summary.html -share/doc/xerces-j/xni/overview-frame.html -share/doc/xerces-j/xni/serialized-form.html -share/doc/xerces-j/xni/package-list -share/doc/xerces-j/xni/help-doc.html -share/doc/xerces-j/xni/overview-tree.html -share/doc/xerces-j/xni/stylesheet.css -share/doc/xerces-j/xerces2/org/apache/xerces/dom/events/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/events/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/events/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/events/EventImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/events/MutationEventImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredNode.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ASDOMImplementationImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ASModelImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/AttributeMap.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/AttrImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/AttrNSImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/CDATASectionImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/CharacterDataImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ChildNode.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/CommentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/CoreDocumentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/CoreDOMImplementationImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/EntityImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeepNodeListImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredAttrImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredAttrNSImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredCDATASectionImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredCommentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredDocumentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredDocumentTypeImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredElementDefinitionImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredElementImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredElementNSImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredEntityImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredEntityReferenceImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredNotationImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredTextImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DocumentFragmentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DeferredProcessingInstructionImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DocumentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DocumentTypeImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMErrorImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMImplementationImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMImplementationSourceImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMInputSourceImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMLocatorImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMMessageFormatter.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMNormalizer.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMNormalizer.XMLAttributesProxy.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/DOMValidationConfiguration.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ElementDefinitionImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ElementImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ElementNSImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/EntityReferenceImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/NamedNodeMapImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/NodeImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/NodeIteratorImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/NotationImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ParentNode.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/ProcessingInstructionImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/PSVIAttrNSImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/PSVIDocumentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/PSVIDOMImplementationImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/PSVIElementNSImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/RangeImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/TextImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/TreeWalkerImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/dom/RangeExceptionImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/SimpleContentModel.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/ContentModelValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/CMAny.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/CMBinOp.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/CMLeaf.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/CMNode.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/CMStateSet.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/CMUniOp.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/DFAContentModel.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/MixedContentModel.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLContentSpec.Provider.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLDTDValidatorFilter.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/DTDGrammar.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/DTDGrammar.QNameHashtable.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/DTDGrammarBucket.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLAttributeDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLContentSpec.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLDTDDescription.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLDTDLoader.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLDTDProcessor.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLDTDValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLElementDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLEntityDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLNotationDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLNSDTDValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/XMLSimpleType.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/ParseException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/BMPattern.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/Match.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/RegularExpression.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/REUtil.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/XPath.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/XPath.Axis.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/XPath.LocationPath.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/XPath.NodeTest.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/XPath.Step.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/XPathException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom/DocumentImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom/DOMNodePool.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom/DOMParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom/ElementNSImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/XPathMatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/FieldActivator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/ValueStore.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/Field.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/Field.Matcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/Field.XPath.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/IdentityConstraint.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/IDValue.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/KeyRef.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/Selector.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/Selector.Matcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/Selector.XPath.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/UniqueOrKey.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/XSEmptyCM.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/XSCMValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/CMBuilder.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/XSAllCM.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/XSCMBinOp.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/XSCMLeaf.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/XSCMUniOp.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/XSDFACM.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSWildcard.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/ObjectList.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/PSVIProvider.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/StringList.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSAnnotation.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSAttributeDeclaration.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSAttributeGroupDefinition.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSAttributeUse.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSComplexTypeDefinition.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSConstants.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSElementDeclaration.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSIDConstraintDefinition.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSModel.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSNamedMap.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSModelGroup.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSModelGroupDefinition.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSNamespaceItem.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSNotationDeclaration.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSObject.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSObjectList.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSParticle.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSSimpleTypeDefinition.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSTerm.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/XSTypeDefinition.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/traversers/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/traversers/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/traversers/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/traversers/XSAttributeChecker.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/traversers/XSDAbstractParticleTraverser.ParticleArray.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/traversers/XSDHandler.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/XSObjectListImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/ObjectListImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/SimpleLocator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/StringListImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/XInt.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/XIntPool.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/XSNamedMap4Types.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/XSNamedMapImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/SchemaGrammar.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/SchemaGrammar.BuiltinSchemaGrammar.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/SchemaNamespaceSupport.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/SchemaSymbols.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/SubstitutionGroupHandler.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaLoader.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.KeyRefValueStore.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.KeyValueStore.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.LocalIDKey.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.OrderedHashtable.Entry.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.UniqueValueStore.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.ValueStoreBase.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.ValueStoreCache.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.XPathMatcherStack.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaValidator.XSIErrorReporter.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSConstraints.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSAttributeDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSAttributeGroupDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSAttributeUseImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSComplexTypeDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSDDescription.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSDeclarationPool.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSElementDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSGrammarBucket.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSGroupDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSMessageFormatter.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSModelGroupImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSModelImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSNotationDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSParticleDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSWildcardDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XMLSchemaException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/XSTypeDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/AttributePSVImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/ElementPSVImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/validation/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/validation/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/validation/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/validation/EntityState.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/validation/ValidationManager.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/validation/ValidationState.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/SchemaDateTimeException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/AbstractDateTimeDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/AnySimpleDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/AnyURIDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/Base64BinaryDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/BaseDVFactory.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/BooleanDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/DateDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/DateTimeDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/DayDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/DecimalDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/DoubleDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/DurationDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/EntityDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/FloatDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/FullDVFactory.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/IDDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/HexBinaryDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/IDREFDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/ListDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/MonthDayDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/MonthDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/QNameDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/SchemaDVFactoryImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/StringDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/TimeDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/TypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/UnionDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/YearDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/YearMonthDV.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/StringDatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/DTDDVFactoryImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/ENTITYDatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/IDDatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/IDREFDatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/ListDatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/NMTOKENDatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/NOTATIONDatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/util/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/util/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/util/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/util/Base64.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/util/HexBin.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/DatatypeValidator.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/ValidationContext.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/XSSimpleType.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/DTDDVFactory.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/SchemaDVFactory.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/ValidatedInfo.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/XSFacets.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/DatatypeException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/DVFactoryException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/InvalidDatatypeFacetException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/InvalidDatatypeValueException.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/io/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/io/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/io/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/io/ASCIIReader.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/io/UCSReader.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/io/UTF8Reader.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/msg/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/msg/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/msg/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/msg/XMLMessageFormatter.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/Version.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XML11DocumentScannerImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XML11DTDScannerImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XML11EntityManager.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLScanner.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XML11EntityManager.XML11EntityScanner.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.ElementStack.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.DTDDispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.PrologDispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.TrailingMiscDispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.XMLDeclDispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDTDScannerImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityManager.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityManager.Entity.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityManager.EntityScanner.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityManager.ExternalEntity.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityManager.InternalEntity.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityManager.RewindableInputStream.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityManager.ScannedEntity.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityScanner.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLErrorReporter.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLNamespaceBinder.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLNSDocumentScannerImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLNSDocumentScannerImpl.NSContentDispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/RevalidationHandler.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLEntityHandler.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.Dispatcher.html -share/doc/xerces-j/xerces2/org/apache/xerces/impl/Constants.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/SAXParserImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/JAXPConstants.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/DocumentBuilderFactoryImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/DocumentBuilderImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/SAXParserFactoryImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/jaxp/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/XMLParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/AbstractDOMParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/AbstractSAXParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/AbstractSAXParser.AttributesProxy.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/AbstractSAXParser.LocatorProxy.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/AbstractXMLDocumentParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/BasicParserConfiguration.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/CachingParserPool.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/CachingParserPool.ShadowedGrammarPool.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/CachingParserPool.SynchronizedGrammarPool.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/DOMParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/DOMASBuilderImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/DOMBuilderImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/DTDConfiguration.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/DTDParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/IntegratedParserConfiguration.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/NonValidatingConfiguration.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/SAXParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/StandardParserConfiguration.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/XML11Configuration.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/XMLDocumentParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/XMLGrammarCachingConfiguration.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/XMLGrammarParser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/XMLGrammarPreparser.html -share/doc/xerces-j/xerces2/org/apache/xerces/parsers/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/ObjectFactory.ConfigurationError.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/package-tree.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/package-frame.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/MessageFormatter.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/AugmentationsImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/DefaultErrorHandler.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/DOMEntityResolverWrapper.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/DOMErrorHandlerWrapper.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/DOMUtil.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/EncodingMap.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/EntityResolverWrapper.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/ErrorHandlerWrapper.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/IntStack.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/NamespaceSupport.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/ObjectFactory.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/ParserConfigurationSettings.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/ShadowedSymbolTable.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/SymbolHash.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/SymbolHash.Entry.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/SymbolTable.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/SymbolTable.Entry.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/SynchronizedSymbolTable.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/URI.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/XMLAttributesImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/XMLChar.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/XMLGrammarPoolImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/XMLGrammarPoolImpl.Entry.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/XMLResourceIdentifierImpl.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/XMLStringBuffer.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/XMLSymbols.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/package-summary.html -share/doc/xerces-j/xerces2/org/apache/xerces/util/URI.MalformedURIException.html -share/doc/xerces-j/xerces2/index-all.html -share/doc/xerces-j/xerces2/deprecated-list.html -share/doc/xerces-j/xerces2/allclasses-frame.html -share/doc/xerces-j/xerces2/index.html -share/doc/xerces-j/xerces2/packages.html -share/doc/xerces-j/xerces2/overview-summary.html -share/doc/xerces-j/xerces2/overview-frame.html -share/doc/xerces-j/xerces2/serialized-form.html -share/doc/xerces-j/xerces2/package-list -share/doc/xerces-j/xerces2/help-doc.html -share/doc/xerces-j/xerces2/overview-tree.html -share/doc/xerces-j/xerces2/stylesheet.css -share/doc/xerces-j/other/org/apache/html/dom/NameNodeListImpl.html -share/doc/xerces-j/other/org/apache/html/dom/package-tree.html -share/doc/xerces-j/other/org/apache/html/dom/package-frame.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLFormControl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLAnchorElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLAppletElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLAreaElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLBaseElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLBaseFontElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLBodyElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLBRElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLBuilder.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLButtonElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLDirectoryElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLDivElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLDListElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLDocumentImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLDOMImplementationImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLFieldSetElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLFontElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLFormElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLFrameElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLFrameSetElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLHeadElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLHeadingElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLHRElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLHtmlElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLIFrameElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLImageElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLInputElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLIsIndexElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLLabelElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLLegendElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLLIElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLLinkElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLMapElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLMenuElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLMetaElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLModElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLObjectElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLOListElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLOptGroupElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLOptionElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLParagraphElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLParamElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLPreElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLQuoteElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLScriptElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLSelectElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLStyleElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTableCaptionElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTableCellElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTableColElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTableElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTableRowElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTableSectionElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTextAreaElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLTitleElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/HTMLUListElementImpl.html -share/doc/xerces-j/other/org/apache/html/dom/package-summary.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLWmlElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/package-tree.html -share/doc/xerces-j/other/org/apache/wml/dom/package-frame.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLAccessElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLAElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLAnchorElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLBElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLBigElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLBrElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLCardElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLDocumentImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLDoElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLDOMImplementationImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLEmElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLFieldsetElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLGoElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLHeadElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLIElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLImgElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLInputElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLMetaElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLNoopElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLOneventElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLOptgroupElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLOptionElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLPElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLPostfieldElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLPrevElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLRefreshElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLSelectElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLSetvarElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLSmallElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLStrongElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLTableElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLTdElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLTemplateElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLTimerElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLTrElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/WMLUElementImpl.html -share/doc/xerces-j/other/org/apache/wml/dom/package-summary.html -share/doc/xerces-j/other/org/apache/wml/package-tree.html -share/doc/xerces-j/other/org/apache/wml/package-frame.html -share/doc/xerces-j/other/org/apache/wml/WMLAccessElement.html -share/doc/xerces-j/other/org/apache/wml/WMLAElement.html -share/doc/xerces-j/other/org/apache/wml/WMLAnchorElement.html -share/doc/xerces-j/other/org/apache/wml/WMLBElement.html -share/doc/xerces-j/other/org/apache/wml/WMLBigElement.html -share/doc/xerces-j/other/org/apache/wml/WMLBrElement.html -share/doc/xerces-j/other/org/apache/wml/WMLCardElement.html -share/doc/xerces-j/other/org/apache/wml/WMLDocument.html -share/doc/xerces-j/other/org/apache/wml/WMLDoElement.html -share/doc/xerces-j/other/org/apache/wml/WMLDOMImplementation.html -share/doc/xerces-j/other/org/apache/wml/WMLElement.html -share/doc/xerces-j/other/org/apache/wml/WMLEmElement.html -share/doc/xerces-j/other/org/apache/wml/WMLFieldsetElement.html -share/doc/xerces-j/other/org/apache/wml/WMLGoElement.html -share/doc/xerces-j/other/org/apache/wml/WMLHeadElement.html -share/doc/xerces-j/other/org/apache/wml/WMLIElement.html -share/doc/xerces-j/other/org/apache/wml/WMLImgElement.html -share/doc/xerces-j/other/org/apache/wml/WMLInputElement.html -share/doc/xerces-j/other/org/apache/wml/WMLMetaElement.html -share/doc/xerces-j/other/org/apache/wml/WMLNoopElement.html -share/doc/xerces-j/other/org/apache/wml/WMLOneventElement.html -share/doc/xerces-j/other/org/apache/wml/WMLOptgroupElement.html -share/doc/xerces-j/other/org/apache/wml/WMLOptionElement.html -share/doc/xerces-j/other/org/apache/wml/WMLPElement.html -share/doc/xerces-j/other/org/apache/wml/WMLPostfieldElement.html -share/doc/xerces-j/other/org/apache/wml/WMLPrevElement.html -share/doc/xerces-j/other/org/apache/wml/WMLRefreshElement.html -share/doc/xerces-j/other/org/apache/wml/WMLSelectElement.html -share/doc/xerces-j/other/org/apache/wml/WMLSetvarElement.html -share/doc/xerces-j/other/org/apache/wml/WMLTdElement.html -share/doc/xerces-j/other/org/apache/wml/WMLTrElement.html -share/doc/xerces-j/other/org/apache/wml/WMLSmallElement.html -share/doc/xerces-j/other/org/apache/wml/WMLStrongElement.html -share/doc/xerces-j/other/org/apache/wml/WMLTableElement.html -share/doc/xerces-j/other/org/apache/wml/WMLTemplateElement.html -share/doc/xerces-j/other/org/apache/wml/WMLTimerElement.html -share/doc/xerces-j/other/org/apache/wml/WMLUElement.html -share/doc/xerces-j/other/org/apache/wml/package-summary.html -share/doc/xerces-j/other/org/apache/wml/WMLWmlElement.html -share/doc/xerces-j/other/org/apache/xml/serialize/XMLSerializer.html -share/doc/xerces-j/other/org/apache/xml/serialize/package-tree.html -share/doc/xerces-j/other/org/apache/xml/serialize/package-frame.html -share/doc/xerces-j/other/org/apache/xml/serialize/DOMSerializer.html -share/doc/xerces-j/other/org/apache/xml/serialize/Serializer.html -share/doc/xerces-j/other/org/apache/xml/serialize/BaseMarkupSerializer.html -share/doc/xerces-j/other/org/apache/xml/serialize/DOMWriterImpl.html -share/doc/xerces-j/other/org/apache/xml/serialize/ElementState.html -share/doc/xerces-j/other/org/apache/xml/serialize/EncodingInfo.html -share/doc/xerces-j/other/org/apache/xml/serialize/Encodings.html -share/doc/xerces-j/other/org/apache/xml/serialize/HTMLdtd.html -share/doc/xerces-j/other/org/apache/xml/serialize/HTMLSerializer.html -share/doc/xerces-j/other/org/apache/xml/serialize/IndentPrinter.html -share/doc/xerces-j/other/org/apache/xml/serialize/LineSeparator.html -share/doc/xerces-j/other/org/apache/xml/serialize/Method.html -share/doc/xerces-j/other/org/apache/xml/serialize/OutputFormat.html -share/doc/xerces-j/other/org/apache/xml/serialize/OutputFormat.Defaults.html -share/doc/xerces-j/other/org/apache/xml/serialize/OutputFormat.DTD.html -share/doc/xerces-j/other/org/apache/xml/serialize/Printer.html -share/doc/xerces-j/other/org/apache/xml/serialize/SerializerFactory.html -share/doc/xerces-j/other/org/apache/xml/serialize/SieveEncodingInfo.html -share/doc/xerces-j/other/org/apache/xml/serialize/TextSerializer.html -share/doc/xerces-j/other/org/apache/xml/serialize/XHTMLSerializer.html -share/doc/xerces-j/other/org/apache/xml/serialize/package-summary.html -share/doc/xerces-j/other/index-all.html -share/doc/xerces-j/other/deprecated-list.html -share/doc/xerces-j/other/allclasses-frame.html -share/doc/xerces-j/other/index.html -share/doc/xerces-j/other/packages.html -share/doc/xerces-j/other/overview-summary.html -share/doc/xerces-j/other/overview-frame.html -share/doc/xerces-j/other/serialized-form.html -share/doc/xerces-j/other/package-list -share/doc/xerces-j/other/help-doc.html -share/doc/xerces-j/other/overview-tree.html -share/doc/xerces-j/other/stylesheet.css -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/DOMASException.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/package-tree.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/package-frame.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASAttributeDeclaration.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASContentModel.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASDataType.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASElementDeclaration.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASEntityDeclaration.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASModel.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASNamedObjectMap.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASNotationDeclaration.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASObject.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ASObjectList.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/CharacterDataEditAS.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/DocumentAS.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/DocumentEditAS.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/DOMASBuilder.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/DOMASWriter.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/DOMImplementationAS.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/ElementEditAS.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/NodeEditAS.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as/package-summary.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/package-tree.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/package-frame.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/DOMError.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/DOMErrorHandler.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/DOMImplementationSource.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/DOMLocator.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/UserDataHandler.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/package-summary.html -share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/DOMImplementationRegistry.html -share/doc/xerces-j/dom3-api/index-all.html -share/doc/xerces-j/dom3-api/deprecated-list.html -share/doc/xerces-j/dom3-api/allclasses-frame.html -share/doc/xerces-j/dom3-api/index.html -share/doc/xerces-j/dom3-api/packages.html -share/doc/xerces-j/dom3-api/overview-summary.html -share/doc/xerces-j/dom3-api/overview-frame.html -share/doc/xerces-j/dom3-api/serialized-form.html -share/doc/xerces-j/dom3-api/package-list -share/doc/xerces-j/dom3-api/help-doc.html -share/doc/xerces-j/dom3-api/overview-tree.html -share/doc/xerces-j/dom3-api/stylesheet.css -share/doc/xerces-j/api/javax/xml/parsers/FactoryConfigurationError.html -share/doc/xerces-j/api/javax/xml/parsers/package-tree.html -share/doc/xerces-j/api/javax/xml/parsers/package-frame.html -share/doc/xerces-j/api/javax/xml/parsers/DocumentBuilder.html -share/doc/xerces-j/api/javax/xml/parsers/DocumentBuilderFactory.html -share/doc/xerces-j/api/javax/xml/parsers/SAXParser.html -share/doc/xerces-j/api/javax/xml/parsers/SAXParserFactory.html -share/doc/xerces-j/api/javax/xml/parsers/ParserConfigurationException.html -share/doc/xerces-j/api/javax/xml/parsers/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/events/EventException.html -share/doc/xerces-j/api/org/w3c/dom/events/package-tree.html -share/doc/xerces-j/api/org/w3c/dom/events/package-frame.html -share/doc/xerces-j/api/org/w3c/dom/events/DocumentEvent.html -share/doc/xerces-j/api/org/w3c/dom/events/Event.html -share/doc/xerces-j/api/org/w3c/dom/events/EventListener.html -share/doc/xerces-j/api/org/w3c/dom/events/EventTarget.html -share/doc/xerces-j/api/org/w3c/dom/events/MutationEvent.html -share/doc/xerces-j/api/org/w3c/dom/events/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLUListElement.html -share/doc/xerces-j/api/org/w3c/dom/html/package-tree.html -share/doc/xerces-j/api/org/w3c/dom/html/package-frame.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLAnchorElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLAppletElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLAreaElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLBaseElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLBaseFontElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLBodyElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLBRElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLButtonElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLCollection.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLDirectoryElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLDivElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLDListElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLDocument.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLDOMImplementation.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLFieldSetElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLFontElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLFormElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLFrameElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLFrameSetElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLHeadElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLHeadingElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLHRElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLHtmlElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLIFrameElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLImageElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLInputElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLIsIndexElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLLabelElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLLegendElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLLIElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLLinkElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLMapElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLMenuElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLMetaElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLModElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLObjectElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLOListElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLOptGroupElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLOptionElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLParagraphElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLParamElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLPreElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLQuoteElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLScriptElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLSelectElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLStyleElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTableCaptionElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTableCellElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTableColElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTableElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTableRowElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTableSectionElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTextAreaElement.html -share/doc/xerces-j/api/org/w3c/dom/html/HTMLTitleElement.html -share/doc/xerces-j/api/org/w3c/dom/html/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/ls/ParseErrorEvent.html -share/doc/xerces-j/api/org/w3c/dom/ls/package-tree.html -share/doc/xerces-j/api/org/w3c/dom/ls/package-frame.html -share/doc/xerces-j/api/org/w3c/dom/ls/DocumentLS.html -share/doc/xerces-j/api/org/w3c/dom/ls/DOMBuilder.html -share/doc/xerces-j/api/org/w3c/dom/ls/DOMBuilderFilter.html -share/doc/xerces-j/api/org/w3c/dom/ls/DOMEntityResolver.html -share/doc/xerces-j/api/org/w3c/dom/ls/DOMImplementationLS.html -share/doc/xerces-j/api/org/w3c/dom/ls/DOMInputSource.html -share/doc/xerces-j/api/org/w3c/dom/ls/DOMWriter.html -share/doc/xerces-j/api/org/w3c/dom/ls/DOMWriterFilter.html -share/doc/xerces-j/api/org/w3c/dom/ls/LSLoadEvent.html -share/doc/xerces-j/api/org/w3c/dom/ls/LSProgressEvent.html -share/doc/xerces-j/api/org/w3c/dom/ls/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/ranges/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/ranges/package-tree.html -share/doc/xerces-j/api/org/w3c/dom/ranges/package-frame.html -share/doc/xerces-j/api/org/w3c/dom/ranges/DocumentRange.html -share/doc/xerces-j/api/org/w3c/dom/ranges/Range.html -share/doc/xerces-j/api/org/w3c/dom/ranges/RangeException.html -share/doc/xerces-j/api/org/w3c/dom/traversal/DocumentTraversal.html -share/doc/xerces-j/api/org/w3c/dom/traversal/package-tree.html -share/doc/xerces-j/api/org/w3c/dom/traversal/package-frame.html -share/doc/xerces-j/api/org/w3c/dom/traversal/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/traversal/NodeFilter.html -share/doc/xerces-j/api/org/w3c/dom/traversal/NodeIterator.html -share/doc/xerces-j/api/org/w3c/dom/traversal/TreeWalker.html -share/doc/xerces-j/api/org/w3c/dom/xpath/XPathException.html -share/doc/xerces-j/api/org/w3c/dom/xpath/package-tree.html -share/doc/xerces-j/api/org/w3c/dom/xpath/package-frame.html -share/doc/xerces-j/api/org/w3c/dom/xpath/XPathEvaluator.html -share/doc/xerces-j/api/org/w3c/dom/xpath/XPathExpression.html -share/doc/xerces-j/api/org/w3c/dom/xpath/XPathNamespace.html -share/doc/xerces-j/api/org/w3c/dom/xpath/XPathNSResolver.html -share/doc/xerces-j/api/org/w3c/dom/xpath/XPathResult.html -share/doc/xerces-j/api/org/w3c/dom/xpath/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/Comment.html -share/doc/xerces-j/api/org/w3c/dom/Document.html -share/doc/xerces-j/api/org/w3c/dom/DocumentFragment.html -share/doc/xerces-j/api/org/w3c/dom/DocumentType.html -share/doc/xerces-j/api/org/w3c/dom/DOMImplementation.html -share/doc/xerces-j/api/org/w3c/dom/Element.html -share/doc/xerces-j/api/org/w3c/dom/Entity.html -share/doc/xerces-j/api/org/w3c/dom/EntityReference.html -share/doc/xerces-j/api/org/w3c/dom/NamedNodeMap.html -share/doc/xerces-j/api/org/w3c/dom/Node.html -share/doc/xerces-j/api/org/w3c/dom/NodeList.html -share/doc/xerces-j/api/org/w3c/dom/Notation.html -share/doc/xerces-j/api/org/w3c/dom/ProcessingInstruction.html -share/doc/xerces-j/api/org/w3c/dom/Text.html -share/doc/xerces-j/api/org/w3c/dom/Attr.html -share/doc/xerces-j/api/org/w3c/dom/package-summary.html -share/doc/xerces-j/api/org/w3c/dom/DOMException.html -share/doc/xerces-j/api/org/w3c/dom/package-tree.html -share/doc/xerces-j/api/org/w3c/dom/package-frame.html -share/doc/xerces-j/api/org/w3c/dom/CDATASection.html -share/doc/xerces-j/api/org/w3c/dom/CharacterData.html -share/doc/xerces-j/api/org/xml/sax/helpers/XMLReaderFactory.html -share/doc/xerces-j/api/org/xml/sax/helpers/package-tree.html -share/doc/xerces-j/api/org/xml/sax/helpers/package-frame.html -share/doc/xerces-j/api/org/xml/sax/helpers/AttributeListImpl.html -share/doc/xerces-j/api/org/xml/sax/helpers/AttributesImpl.html -share/doc/xerces-j/api/org/xml/sax/helpers/DefaultHandler.html -share/doc/xerces-j/api/org/xml/sax/helpers/LocatorImpl.html -share/doc/xerces-j/api/org/xml/sax/helpers/NamespaceSupport.html -share/doc/xerces-j/api/org/xml/sax/helpers/ParserAdapter.html -share/doc/xerces-j/api/org/xml/sax/helpers/ParserFactory.html -share/doc/xerces-j/api/org/xml/sax/helpers/XMLFilterImpl.html -share/doc/xerces-j/api/org/xml/sax/helpers/XMLReaderAdapter.html -share/doc/xerces-j/api/org/xml/sax/helpers/package-summary.html -share/doc/xerces-j/api/org/xml/sax/ext/package-summary.html -share/doc/xerces-j/api/org/xml/sax/ext/package-tree.html -share/doc/xerces-j/api/org/xml/sax/ext/package-frame.html -share/doc/xerces-j/api/org/xml/sax/ext/DeclHandler.html -share/doc/xerces-j/api/org/xml/sax/ext/LexicalHandler.html -share/doc/xerces-j/api/org/xml/sax/package-frame.html -share/doc/xerces-j/api/org/xml/sax/AttributeList.html -share/doc/xerces-j/api/org/xml/sax/Attributes.html -share/doc/xerces-j/api/org/xml/sax/ContentHandler.html -share/doc/xerces-j/api/org/xml/sax/DocumentHandler.html -share/doc/xerces-j/api/org/xml/sax/DTDHandler.html -share/doc/xerces-j/api/org/xml/sax/EntityResolver.html -share/doc/xerces-j/api/org/xml/sax/ErrorHandler.html -share/doc/xerces-j/api/org/xml/sax/Locator.html -share/doc/xerces-j/api/org/xml/sax/Parser.html -share/doc/xerces-j/api/org/xml/sax/XMLFilter.html -share/doc/xerces-j/api/org/xml/sax/XMLReader.html -share/doc/xerces-j/api/org/xml/sax/HandlerBase.html -share/doc/xerces-j/api/org/xml/sax/InputSource.html -share/doc/xerces-j/api/org/xml/sax/SAXException.html -share/doc/xerces-j/api/org/xml/sax/SAXNotRecognizedException.html -share/doc/xerces-j/api/org/xml/sax/SAXNotSupportedException.html -share/doc/xerces-j/api/org/xml/sax/package-summary.html -share/doc/xerces-j/api/org/xml/sax/SAXParseException.html -share/doc/xerces-j/api/org/xml/sax/package-tree.html -share/doc/xerces-j/api/deprecated-list.html -share/doc/xerces-j/api/allclasses-frame.html -share/doc/xerces-j/api/index.html -share/doc/xerces-j/api/packages.html -share/doc/xerces-j/api/overview-summary.html -share/doc/xerces-j/api/overview-frame.html -share/doc/xerces-j/api/serialized-form.html -share/doc/xerces-j/api/package-list -share/doc/xerces-j/api/help-doc.html -share/doc/xerces-j/api/overview-tree.html -share/doc/xerces-j/api/stylesheet.css -share/doc/xerces-j/api/index-all.html -share/java/classes/xmlParserAPIs.jar -share/java/classes/xercesImpl.jar -@dirrm share/doc/xerces-j/xni/org/apache/xerces/xni/grammars -@dirrm share/doc/xerces-j/xni/org/apache/xerces/xni/parser -@dirrm share/doc/xerces-j/xni/org/apache/xerces/xni/psvi -@dirrm share/doc/xerces-j/xni/org/apache/xerces/xni -@dirrm share/doc/xerces-j/xni/org/apache/xerces -@dirrm share/doc/xerces-j/xni/org/apache -@dirrm share/doc/xerces-j/xni/org -@dirrm share/doc/xerces-j/xni -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/dom/events -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/dom -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd/models -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/dtd -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath/regex -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xpath -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/dom -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/identity -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/models -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/psvi -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/traversers -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs/util -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/xs -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/validation -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/xs -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/dtd -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv/util -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/dv -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/io -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl/msg -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/impl -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/jaxp -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/parsers -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces/util -@dirrm share/doc/xerces-j/xerces2/org/apache/xerces -@dirrm share/doc/xerces-j/xerces2/org/apache -@dirrm share/doc/xerces-j/xerces2/org -@dirrm share/doc/xerces-j/xerces2 -@dirrm share/doc/xerces-j/other/org/apache/html/dom -@dirrm share/doc/xerces-j/other/org/apache/html -@dirrm share/doc/xerces-j/other/org/apache/wml/dom -@dirrm share/doc/xerces-j/other/org/apache/wml -@dirrm share/doc/xerces-j/other/org/apache/xml/serialize -@dirrm share/doc/xerces-j/other/org/apache/xml -@dirrm share/doc/xerces-j/other/org/apache -@dirrm share/doc/xerces-j/other/org -@dirrm share/doc/xerces-j/other -@dirrm share/doc/xerces-j/dom3-api/org/apache/xerces/dom3/as -@dirrm share/doc/xerces-j/dom3-api/org/apache/xerces/dom3 -@dirrm share/doc/xerces-j/dom3-api/org/apache/xerces -@dirrm share/doc/xerces-j/dom3-api/org/apache -@dirrm share/doc/xerces-j/dom3-api/org -@dirrm share/doc/xerces-j/dom3-api -@dirrm share/doc/xerces-j/api/javax/xml/parsers -@dirrm share/doc/xerces-j/api/javax/xml -@dirrm share/doc/xerces-j/api/javax -@dirrm share/doc/xerces-j/api/org/w3c/dom/events -@dirrm share/doc/xerces-j/api/org/w3c/dom/html -@dirrm share/doc/xerces-j/api/org/w3c/dom/ls -@dirrm share/doc/xerces-j/api/org/w3c/dom/ranges -@dirrm share/doc/xerces-j/api/org/w3c/dom/traversal -@dirrm share/doc/xerces-j/api/org/w3c/dom/xpath -@dirrm share/doc/xerces-j/api/org/w3c/dom -@dirrm share/doc/xerces-j/api/org/w3c -@dirrm share/doc/xerces-j/api/org/xml/sax/helpers -@dirrm share/doc/xerces-j/api/org/xml/sax/ext -@dirrm share/doc/xerces-j/api/org/xml/sax -@dirrm share/doc/xerces-j/api/org/xml -@dirrm share/doc/xerces-j/api/org -@dirrm share/doc/xerces-j/api -@dirrm share/doc/xerces-j |