]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/org/w3c/dom/NodeList.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / org / w3c / dom / NodeList.java
diff --git a/libjava/org/w3c/dom/NodeList.java b/libjava/org/w3c/dom/NodeList.java
deleted file mode 100644 (file)
index f4033f3..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*\r
- * Copyright (c) 2000 World Wide Web Consortium,\r
- * (Massachusetts Institute of Technology, Institut National de\r
- * Recherche en Informatique et en Automatique, Keio University). All\r
- * Rights Reserved. This program is distributed under the W3C's Software\r
- * Intellectual Property License. This program is distributed in the\r
- * hope that it will be useful, but WITHOUT ANY WARRANTY; without even\r
- * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\r
- * PURPOSE.\r
- * See W3C License http://www.w3.org/Consortium/Legal/ for more details.\r
- */\r
-\r
-package org.w3c.dom;\r
-\r
-/**\r
- * The <code>NodeList</code> interface provides the abstraction of an ordered \r
- * collection of nodes, without defining or constraining how this collection \r
- * is implemented. <code>NodeList</code> objects in the DOM are live.\r
- * <p>The items in the <code>NodeList</code> are accessible via an integral \r
- * index, starting from 0.\r
- * <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>.\r
- */\r
-public interface NodeList {\r
-    /**\r
-     * Returns the <code>index</code>th item in the collection. If \r
-     * <code>index</code> is greater than or equal to the number of nodes in \r
-     * the list, this returns <code>null</code>.\r
-     * @param indexIndex into the collection.\r
-     * @return The node at the <code>index</code>th position in the \r
-     *   <code>NodeList</code>, or <code>null</code> if that is not a valid \r
-     *   index.\r
-     */\r
-    public Node item(int index);\r
-\r
-    /**\r
-     * The number of nodes in the list. The range of valid child node indices \r
-     * is 0 to <code>length-1</code> inclusive. \r
-     */\r
-    public int getLength();\r
-\r
-}\r