JavaTM 2 Platform
Standard Ed. 6

org.w3c.dom
介面 DOMImplementationList


public interface DOMImplementationList

DOMImplementationList 介面提供對 DOM 實作的有序集合的抽象,沒有定義或約束如何實作此集合。DOMImplementationList 中的項可以通過從 0 開始的整數索引存取。

另請參見 Document Object Model (DOM) Level 3 Core Specification

從以下版本開始:
DOM Level 3

方法摘要
 int getLength()
          列表中 DOMImplementation 的數目。
 DOMImplementation item(int index)
          返回集合中的第 index 個項。
 

方法詳細資訊

item

DOMImplementation item(int index)
返回集合中的第 index 個項。如果 index 大於或等於列表中的 DOMImplementation 的數目,則此方法返回 null

參數:
index - 集合中的索引。
返回:
DOMImplementationList 中第 index 個位置處的 DOMImplementation;如果索引不是有效索引,則返回 null

getLength

int getLength()
列表中 DOMImplementation 的數目。有效子節點索引的範圍是 0 到 length-1(包含此值)。


JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only