Home | History | Annotate | Download | only in ref

Lines Matching defs:nodeList

41 import org.w3c.dom.NodeList;
363 public final NodeList getChildNodes()
743 public final NodeList getElementsByTagName(String tagname)
752 NodeList nodeList = retNode.getChildNodes();
753 for (int i = 0; i < nodeList.getLength(); i++)
755 traverseChildren(listVector, nodeList.item(i), tagname,
769 return (NodeList) nodeSet;
800 NodeList nodeList = tempNode.getChildNodes();
801 for (int i = 0; i < nodeList.getLength(); i++)
803 traverseChildren(listVector, nodeList.item(i), tagname,
866 public final NodeList getElementsByTagNameNS(String namespaceURI,
877 NodeList nodeList = retNode.getChildNodes();
878 for(int i = 0; i < nodeList.getLength(); i++)
880 traverseChildren(listVector, nodeList.item(i), namespaceURI, localName, isNamespaceURIWildCard, isLocalNameWildCard);
894 return (NodeList) nodeSet;
937 NodeList nl = tempNode.getChildNodes();