Albert,

What do you want to do with the node?  There is very little in the
SVGTextElement interface.  But in general, you'll do something like the
following:

     Nodelist n = document.getElementsByTagName("text");
     Element e = n.item(0);

The element interface should give you visibility what I imagine you might
need.

Dave


Albert wrote:
>I parse a file getting a SVGDocument. I'm interested in treating the
><text> tags and to do so I use the method
>getElementsByTagName("text"). The problem is that when I have one of
>the nodes, I can't cast it to a SVGTextElement, it gives to me a
>classCastException: org.apache.batik.dom.GenericElement.
>What's wrong with what i'm doing ?
>
>Thanks.

---------------------------------------------------------
 David Kane                     [EMAIL PROTECTED]
"What's Life?"                  http://www.houseofyin.com
                                http://www.vraps.com


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to