W3C dom api in Java
Posted
by Benju
on Stack Overflow
See other posts from Stack Overflow
or by Benju
Published on 2010-04-09T20:26:52Z
Indexed on
2010/04/09
20:33 UTC
Read the original article
Hit count: 456
Take a look at the example code...
NodeList folderNodes = document.getElementsByTagName("Folder");
DocumentFragment node = (DocumentFragment) folderNodes.item(0);
It was very easy to do "getElementsByTagName" on the document but when I want to do this again on the DocumentFragment it seems I cannot. How do I go about furthering this query?
© Stack Overflow or respective owner