public interface DOMImplementationList
org.w3c.dom.DOMImplementationList |
DOMImplementationList
接口提供了DOM实现的有序集合的抽象,而没有定义或约束该集合如何实现。 DOMImplementationList
中的项目可通过从0开始的整数索引访问。
另见 Document Object Model (DOM) Level 3 Core Specification 。
Public methods |
|
---|---|
abstract int |
getLength() 列表中的数量为 |
abstract DOMImplementation |
item(int index) 返回 |
int getLength ()
列表中的数量为DOMImplementation
。 有效子节点索引的范围是0到length-1
含)。
Returns | |
---|---|
int |
DOMImplementation item (int index)
返回index
第index
个项目。 如果index
大于或等于列表中的数量DOMImplementation
,则返回null
。
Parameters | |
---|---|
index |
int : Index into the collection. |
Returns | |
---|---|
DOMImplementation |
The DOMImplementation at the index th position in the DOMImplementationList , or null if that is not a valid index. |