public NodeListImpl(Node rootNode, String tagName, boolean deepSearch)Constructs a NodeList by searching for all descendants or the direct
children of a root node with a given tag name.
mRootNode = rootNode;
mTagName = tagName;
mDeepSearch = deepSearch;
|