vote up 1 vote down star

So I'm using HTMLCleaner which returns a org.w3c.dom compatible DOM. Now, I want to insert my own subclassed Elements (which implement additional functionality outside the dom) into this dom tree. Is this possible?

If you use the Document.createElement(), you can't say that you want it to create your implementation of an element. Ideally I don't want my class to implement Element and Node have to manually do all the work that has already been done. I thought that I could subclass ElementImpl from Xerces and potentially add it to the DOM I have. However Xerces expects to be created into DOMs that implement CoreDocumentImpl etc.

It would be a pity, from an elegance point of view. If I had to use plain Element and manage to identify them by their attributes/names etc, as each one needs to point to particular positions in an index.

flag
Is something against you extend the already existing implementation provided by this HTMLCleaner library? Package privateness perhaps? – kd304 Jun 27 at 14:34
Although HTMLCleaner and Xerces DOM use the same interface, I think both of them expects its own implementation behind it, so using an ElementImpl in the HTMLCleaner might throw ClassCastException. – kd304 Jun 27 at 14:41
@kd304 It's probably the best idea to look at extending the HTMLCleaner library. If you had put that as an answer and not a comment I would have voted for it ;) I can't see how any of the other DOM implementations suggested actually solve the said problem. It's such a pity that with such an extensive set of interfaces, the DOM libraries expect their own implementations. – Daniel Jun 30 at 21:06

2 Answers

vote up 0 vote down

DOM is not the prettiest API to work with. If you want simplicity, use DOM4J : - Wrap the DOM document into a DOM4J document - Use DOM4J instead of DOM to build the existing document or wrap it in a DOM4J document

link|flag
vote up 0 vote down

If possible, I'd recommend ditching Xerces for JAXB. It's a much friendlier API.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.