-
Notifications
You must be signed in to change notification settings - Fork 93
Allow using FactoryAdapter as ContentHandler #765
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd love to not expose FactoryAdapter
at all; is feeding an appropriate XMLReader
to XML.withXMLReader().loadDocument()
feasible?
Thanks for the pointer! In the case of jdom2, I can do
val source = new transform.JDOMSource(document)
XML.withXMLReader(source.getXMLReader).loadDocument(source.getInputSource).docElem
#694 for reference
Thanks for the pointer! In the case of jdom2, I can do
val source = new transform.JDOMSource(document) XML.withXMLReader(source.getXMLReader).loadDocument(source.getInputSource).docElem
Glad it worked out!
Any suggestions for making Scala XML documentation clearer in this area are welcome ;)
Fixes #764