jadams-tresys commented on code in PR #862:
URL: https://github.com/apache/daffodil/pull/862#discussion_r1006936582
##########
daffodil-sapi/src/main/scala/org/apache/daffodil/sapi/Daffodil.scala:
##########
@@ -1089,3 +1090,18 @@ class DaffodilUnparseContentHandler private[sapi]
(sContentHandler: SDaffodilUnp
override def skippedEntity(name: String): Unit =
contentHandler.skippedEntity(name)
}
+
+/**
+ * Exposes access to the DFDLCatalogResolver to the Java API.
+ *
+ * Resolves URI/URL/URNs to loadable files/streams.
+ *
+ * The DFDLCatalogResolver implements the following interfaces:
+ * - org.apache.xerces.xni.parser.XMLEntityResolver
+ * - org.w3c.dom.ls.LSResourceResolver
+ * - org.apache.sax.EntityResolver
+ * - org.apache.sax.ext.EntityResolver2
+ */
+object DaffodilXMLEntityResolver {
+ def get = DFDLCatalogResolver.get
+}
Review Comment:
Actually looks just like a normal Java class documentation, so I think this
is good to go
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]