Peter Vanopulos wrote: > > However I can not write multiple attributes to an element... > ===> JDom impl has something similar to what you are describing. I would > of thought that this problem had been encountered before and work around > existed...
I fail to see what is "this problem" you are referring to.. While this is true that W3C DOM does not provide setAttributes() method on Element/Node interfaces, there are several ways how you can add attributes to an element using the DOM. You can add attributes directly to the org.w3c.dom.NamedNodeMap (which is retrieved via getAttributes()) since this object is _live_ or you can use setAttribute* methods on Element interface to add new attributes to the DOM. Thank you, -- Elena Litani / IBM Toronto --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]