Package com.google.gwt.xml.client
Interface NamedNodeMap
-
public interface NamedNodeMapRepresents a string-to-node map, used ingetAttributes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetLength()Returns the number of items in thisNamedNodeMap.NodegetNamedItem(java.lang.String name)This method gets the item having the given name.Nodeitem(int index)This method gets the item at the index position.
-
-
-
Method Detail
-
getLength
int getLength()
Returns the number of items in thisNamedNodeMap.- Returns:
- the number of items in this
NamedNodeMap
-
getNamedItem
Node getNamedItem(java.lang.String name)
This method gets the item having the given name.- Parameters:
name- - the name used to look up the item- Returns:
- the item retrieved
-
item
Node item(int index)
This method gets the item at the index position.- Parameters:
index- - the index to retrieve the item from- Returns:
- the item retrieved
-
-