Package com.google.gwt.xml.client
Interface NodeList
-
public interface NodeListThis interface represents an immutable ordered collection of nodes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetLength()This method retrieves the number of items in thisNodeListobject.Nodeitem(int index)This method gets the item in the position denoted byindex.
-
-
-
Method Detail
-
getLength
int getLength()
This method retrieves the number of items in thisNodeListobject.- Returns:
- the number of nodes in this
NodeListobject.
-
item
Node item(int index)
This method gets the item in the position denoted byindex.- Parameters:
index- - the index to be retrieved- Returns:
- the item at this index
-
-