public interface

NamedNodeMap

com.google.gwt.xml.client.NamedNodeMap

Class Overview

Represents a string-to-node map, used in getAttributes.

Summary

Public Methods
abstract int getLength()
Returns the number of items in this NamedNodeMap.
abstract Node getNamedItem(String name)
This method gets the item having the given name.
abstract Node item(int index)
This method gets the item at the index position.

Public Methods

public abstract int getLength ()

Returns the number of items in this NamedNodeMap.

Returns
  • the number of items in this NamedNodeMap

public abstract Node getNamedItem (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

public abstract 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