DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14480>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14480 Error by appending a text node to a child [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2002-11-12 17:03 ------- Hello. You might have noticed that the toString() method isn't defined on the DOM Element or Node interfaces. It's available in Java because it's automatically inherited from java.lang.Object; most implementations try and return something vaguely useful, but the behaviour is entirely implementation- dependent. What you probably want to do is find out what the element's first child is, then, if it's a textNode, compare its value with 42. That would be the most robust solution at any rate. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
