This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Adding attribute to Node


On Wed, Sep 27, 2000 at 11:07:14PM +0200, Martin Kupisch wrote:
> Hi everyone,
> 
> before processing some xml document I have to add an attribute to a
> node. I have played around with Xerces but did not figure out how to do
> this. Getting the node is obviously no problem. But how do I add the
> attribute? Thanks in advance. Martin

Look at the API for Element, which extends Node.  You can also check that
the node in question really is an element with something like:

if(node.getNodeType() == Node.ELEMENT_NODE)
{
	..
}

Mal


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]