public interface DOMImplementationList
DOMImplementationList
接口提供了一个有序的DOM实现集合的抽象,而不定义或限制如何实现这个集合。 DOMImplementationList
中的项目可以通过整数索引访问,从0开始。
- 自:
- 1.5,DOM Level 3
-
Method Summary
-
Method Details
-
item
返回集合中的第index
项。如果index
大于或等于列表中的DOMImplementation
数量,则返回null
。- 参数:
-
index
- 集合中的索引。 - 返回:
-
DOMImplementationList
中第index
个位置的DOMImplementation
,如果这不是一个有效的索引,则返回null
。
-
getLength
int getLength()列表中的DOMImplementation
数量。有效子节点索引的范围是从0到length-1
。
-