I have an XMLElement that looks like this:
<IRS E="-17"/>
I need the value of E in an int and thought I could do this:
int interror = thexmlElement.getIntAttribute("IRS");
but that doesn't seem to do the trick.
What am I missing here?
thanks.
c
c - 10 Jan 2008 17:21 GMT
> I have an XMLElement that looks like this:
>
[quoted text clipped - 10 lines]
>
> c
Figured it out. Silly me.
getInstAttribute("E") does the trick.
c