Uses of Interface
org.w3c.dom.DOMImplementation
-
Packages that use DOMImplementation 软件包 描述 javax.xml.parsers 提供使用SAX(Simple API for XML)解析器或DOM(文档对象模型)文档构建器处理XML文档的类。org.w3c.dom 提供文档对象模型(DOM)的接口。org.w3c.dom.bootstrap 提供一个工厂来获取DOMImplementation
实例。org.w3c.dom.css 提供DOM Level 2 Style Specification的界面。org.w3c.dom.html 提供DOM Level 2 HTML规范的接口。 -
-
Uses of DOMImplementation in javax.xml.parsers
Methods in javax.xml.parsers that return DOMImplementation Modifier and Type 方法 描述 abstract DOMImplementation
DocumentBuilder. getDOMImplementation()
获取一个DOMImplementation
对象的实例。 -
Uses of DOMImplementation in org.w3c.dom
Methods in org.w3c.dom that return DOMImplementation Modifier and Type 方法 描述 DOMImplementation
DOMImplementationSource. getDOMImplementation(String features)
一种请求支持指定功能的第一个DOM实现的方法。DOMImplementation
Document. getImplementation()
处理此文档的DOMImplementation
对象。DOMImplementation
DOMImplementationList. item(int index)
返回集合中的index
项目。 -
Uses of DOMImplementation in org.w3c.dom.bootstrap
Methods in org.w3c.dom.bootstrap that return DOMImplementation Modifier and Type 方法 描述 DOMImplementation
DOMImplementationRegistry. getDOMImplementation(String features)
返回具有所需功能的第一个实现,如果没有找到,则返回null
。 -
Uses of DOMImplementation in org.w3c.dom.css
Subinterfaces of DOMImplementation in org.w3c.dom.css Modifier and Type 接口 描述 interface
DOMImplementationCSS
该界面允许DOM用户在文档的上下文之外创建一个CSSStyleSheet
。 -
Uses of DOMImplementation in org.w3c.dom.html
Subinterfaces of DOMImplementation in org.w3c.dom.html Modifier and Type 接口 描述 interface
HTMLDOMImplementation
所述HTMLDOMImplementation
接口扩展了DOMImplementation
接口与用于创建HTML文档实例的方法。
-