users@jaxb.java.net

equivalent of XMLBeans XMLObject interface

From: Mark Hansen <mark_at_javector.com>
Date: Mon, 24 Oct 2005 18:55:46 -0400

I've got an XMLBeans application that I'm considering porting to JAXB
2.0. However, I use the XmlObject interface extensively in my
application. I use it at the base representation of an XML "thingy" -
so I can pass around a generic XML object.

I don't want to use something like org.w3c.dom.Node - because that
implies a DOM implementation, which I don't want. I don't want to be
tied to any underlying implementation - that is the beauty of XmlObject
in XmlBeans. Its got methods like getAsDOM() ... etc.

Any ideas?