Re: Adding attribute to Node

Subject: Re: Adding attribute to Node
From: Malcolm Locke <malcolm.locke@xxxxxxxxxxxx>
Date: Thu, 28 Sep 2000 10:00:04 +0100
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


Current Thread