public interface DOMImplementationList
DOMImplementationList
接口提供了DOM实现的有序集合的抽象,而不定义或约束如何实现此集合。
DOMImplementationList
中的项目可以通过整数索引访问,从0开始。
Modifier and Type | Method and Description |
---|---|
int |
getLength()
在列表中的
DOMImplementation 的数量。
|
DOMImplementation |
item(int index)
返回
index 中的index项。
|
DOMImplementation item(int index)
index
中的index项。
如果index
大于或等于列表中的DOMImplementation
秒,则返回null
。
index
- 索引到集合。
DOMImplementation
在
index
位置在
DOMImplementationList
,或
null
如果那不是有效的索引。
int getLength()
DOMImplementation
的数量。
有效子节点索引的范围为0到length-1
含)。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.