-
- All Superinterfaces:
-
XMLReader
- 所有已知实现类:
-
XMLFilterImpl
public interface XMLFilter extends XMLReader
XML过滤器的接口。This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY. See http://www.saxproject.org for further information.
XML过滤器类似于XML阅读器,除了它从另一个XML阅读器而不是像XML文档或数据库这样的主要源获取其事件。 过滤器可以在事件传递到最终应用程序时修改它们。
该XMLFilterImpl辅助类为创建SAX2过滤器,通过将所有的便利基地
EntityResolver
,DTDHandler
,ContentHandler
和ErrorHandler
自动事件。- 从以下版本开始:
- 1.4,SAX 2.0
- 另请参见:
-
XMLFilterImpl
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 XMLReader
getParent()
获得家长读者。void
setParent(XMLReader parent)
设置父阅读器。-
声明方法的接口 org.xml.sax.XMLReader
getContentHandler, getDTDHandler, getEntityResolver, getErrorHandler, getFeature, getProperty, parse, parse, setContentHandler, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setProperty
-
-