stevedlawrence commented on a change in pull request #436:
URL: https://github.com/apache/incubator-daffodil/pull/436#discussion_r509392327
##########
File path: daffodil-sapi/src/main/scala/org/apache/daffodil/sapi/Daffodil.scala
##########
@@ -913,3 +935,70 @@ class DaffodilXMLReader private[sapi] (xmlrdr:
SDaffodilXMLReader) extends org.x
*/
def parse(arr: Array[Byte]): Unit = xmlrdr.parse(arr)
}
+
+/**
+ * Read in an infoset from any SAX Reader for unparsing
+ */
+class DaffodilInputContentHandler private[sapi] (sContentHandler:
SDaffodilInputContentHandler)
+ extends ContentHandlerProxy {
+
+ override val contentHandler: org.xml.sax.ContentHandler = sContentHandler
Review comment:
I think this should be private/protected. I think even though the base
class defines it as protected, I think not making it protected here will make
it public, which we probably don't want.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]