public class

NodeListImpl

extends Object
implements NodeList
java.lang.Object
   ↳ com.android.mms.dom.NodeListImpl

Summary

Public Constructors
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.
NodeListImpl(ArrayList<Node> nodes)
Constructs a NodeList for a given static node list.
Public Methods
int getLength()
Node item(int index)
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.w3c.dom.NodeList

Public Constructors

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.

Parameters
rootNode The root Node of the search.
tagName The tag name to be searched for. If null, all descendants will be returned.

public NodeListImpl (ArrayList<Node> nodes)

Constructs a NodeList for a given static node list.

Parameters
nodes The static node list.

Public Methods

public int getLength ()

public Node item (int index)