1. /*
  2. * Copyright (c) 2000 World Wide Web Consortium,
  3. * (Massachusetts Institute of Technology, Institut National de
  4. * Recherche en Informatique et en Automatique, Keio University). All
  5. * Rights Reserved. This program is distributed under the W3C's Software
  6. * Intellectual Property License. This program is distributed in the
  7. * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  8. * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  9. * PURPOSE.
  10. * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  11. */
  12. package org.w3c.dom;
  13. /**
  14. * Objects implementing the <code>NamedNodeMap</code> interface are used to
  15. * represent collections of nodes that can be accessed by name. Note that
  16. * <code>NamedNodeMap</code> does not inherit from <code>NodeList</code>
  17. * <code>NamedNodeMaps</code> are not maintained in any particular order.
  18. * Objects contained in an object implementing <code>NamedNodeMap</code> may
  19. * also be accessed by an ordinal index, but this is simply to allow
  20. * convenient enumeration of the contents of a <code>NamedNodeMap</code>,
  21. * and does not imply that the DOM specifies an order to these Nodes.
  22. * <p><code>NamedNodeMap</code> objects in the DOM are live.
  23. * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>Document Object Model (DOM) Level 2 Core Specification</a>.
  24. */
  25. public interface NamedNodeMap {
  26. /**
  27. * Retrieves a node specified by name.
  28. * @param name The <code>nodeName</code> of a node to retrieve.
  29. * @return A <code>Node</code> (of any type) with the specified
  30. * <code>nodeName</code>, or <code>null</code> if it does not identify
  31. * any node in this map.
  32. */
  33. public Node getNamedItem(String name);
  34. /**
  35. * Adds a node using its <code>nodeName</code> attribute. If a node with
  36. * that name is already present in this map, it is replaced by the new
  37. * one.
  38. * <br>As the <code>nodeName</code> attribute is used to derive the name
  39. * which the node must be stored under, multiple nodes of certain types
  40. * (those that have a "special" string value) cannot be stored as the
  41. * names would clash. This is seen as preferable to allowing nodes to be
  42. * aliased.
  43. * @param arg A node to store in this map. The node will later be
  44. * accessible using the value of its <code>nodeName</code> attribute.
  45. * @return If the new <code>Node</code> replaces an existing node the
  46. * replaced <code>Node</code> is returned, otherwise <code>null</code>
  47. * is returned.
  48. * @exception DOMException
  49. * WRONG_DOCUMENT_ERR: Raised if <code>arg</code> was created from a
  50. * different document than the one that created this map.
  51. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
  52. * <br>INUSE_ATTRIBUTE_ERR: Raised if <code>arg</code> is an
  53. * <code>Attr</code> that is already an attribute of another
  54. * <code>Element</code> object. The DOM user must explicitly clone
  55. * <code>Attr</code> nodes to re-use them in other elements.
  56. * <br>HIERARCHY_REQUEST_ERR: Raised if an attempt is made to add a node
  57. * doesn't belong in this NamedNodeMap. Examples would include trying
  58. * to insert something other than an Attr node into an Element's map
  59. * of attributes, or a non-Entity node into the DocumentType's map of
  60. * Entities.
  61. */
  62. public Node setNamedItem(Node arg)
  63. throws DOMException;
  64. /**
  65. * Removes a node specified by name. When this map contains the attributes
  66. * attached to an element, if the removed attribute is known to have a
  67. * default value, an attribute immediately appears containing the
  68. * default value as well as the corresponding namespace URI, local name,
  69. * and prefix when applicable.
  70. * @param name The <code>nodeName</code> of the node to remove.
  71. * @return The node removed from this map if a node with such a name
  72. * exists.
  73. * @exception DOMException
  74. * NOT_FOUND_ERR: Raised if there is no node named <code>name</code> in
  75. * this map.
  76. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
  77. */
  78. public Node removeNamedItem(String name)
  79. throws DOMException;
  80. /**
  81. * Returns the <code>index</code>th item in the map. If <code>index</code>
  82. * is greater than or equal to the number of nodes in this map, this
  83. * returns <code>null</code>.
  84. * @param index Index into this map.
  85. * @return The node at the <code>index</code>th position in the map, or
  86. * <code>null</code> if that is not a valid index.
  87. */
  88. public Node item(int index);
  89. /**
  90. * The number of nodes in this map. The range of valid child node indices
  91. * is <code>0</code> to <code>length-1</code> inclusive.
  92. */
  93. public int getLength();
  94. /**
  95. * Retrieves a node specified by local name and namespace URI.
  96. * <br>Documents which do not support the "XML" feature will permit only
  97. * the DOM Level 1 calls for creating/setting elements and attributes.
  98. * Hence, if you specify a non-null namespace URI, these DOMs will never
  99. * find a matching node.
  100. * @param namespaceURI The namespace URI of the node to retrieve.
  101. * @param localName The local name of the node to retrieve.
  102. * @return A <code>Node</code> (of any type) with the specified local
  103. * name and namespace URI, or <code>null</code> if they do not
  104. * identify any node in this map.
  105. * @since DOM Level 2
  106. */
  107. public Node getNamedItemNS(String namespaceURI,
  108. String localName);
  109. /**
  110. * Adds a node using its <code>namespaceURI</code> and
  111. * <code>localName</code>. If a node with that namespace URI and that
  112. * local name is already present in this map, it is replaced by the new
  113. * one.
  114. * @param arg A node to store in this map. The node will later be
  115. * accessible using the value of its <code>namespaceURI</code> and
  116. * <code>localName</code> attributes.
  117. * @return If the new <code>Node</code> replaces an existing node the
  118. * replaced <code>Node</code> is returned, otherwise <code>null</code>
  119. * is returned.
  120. * @exception DOMException
  121. * WRONG_DOCUMENT_ERR: Raised if <code>arg</code> was created from a
  122. * different document than the one that created this map.
  123. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
  124. * <br>INUSE_ATTRIBUTE_ERR: Raised if <code>arg</code> is an
  125. * <code>Attr</code> that is already an attribute of another
  126. * <code>Element</code> object. The DOM user must explicitly clone
  127. * <code>Attr</code> nodes to re-use them in other elements.
  128. * <br>HIERARCHY_REQUEST_ERR: Raised if an attempt is made to add a node
  129. * doesn't belong in this NamedNodeMap. Examples would include trying
  130. * to insert something other than an Attr node into an Element's map
  131. * of attributes, or a non-Entity node into the DocumentType's map of
  132. * Entities.
  133. * <br>NOT_SUPPORTED_ERR: Always thrown if the current document does not
  134. * support the <code>"XML"</code> feature, since namespaces were
  135. * defined by XML.
  136. * @since DOM Level 2
  137. */
  138. public Node setNamedItemNS(Node arg)
  139. throws DOMException;
  140. /**
  141. * Removes a node specified by local name and namespace URI. A removed
  142. * attribute may be known to have a default value when this map contains
  143. * the attributes attached to an element, as returned by the attributes
  144. * attribute of the <code>Node</code> interface. If so, an attribute
  145. * immediately appears containing the default value as well as the
  146. * corresponding namespace URI, local name, and prefix when applicable.
  147. * <br>Documents which do not support the "XML" feature will permit only
  148. * the DOM Level 1 calls for creating/setting elements and attributes.
  149. * Hence, if you specify a non-null namespace URI, these DOMs will never
  150. * find a matching node.
  151. * @param namespaceURI The namespace URI of the node to remove.
  152. * @param localName The local name of the node to remove.
  153. * @return The node removed from this map if a node with such a local
  154. * name and namespace URI exists.
  155. * @exception DOMException
  156. * NOT_FOUND_ERR: Raised if there is no node with the specified
  157. * <code>namespaceURI</code> and <code>localName</code> in this map.
  158. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
  159. * @since DOM Level 2
  160. */
  161. public Node removeNamedItemNS(String namespaceURI,
  162. String localName)
  163. throws DOMException;
  164. }