-
- 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
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 XMLReader
getParent()
得到父母的读者。void
setParent(XMLReader parent)
设置父级阅读器。-
Methods inherited from interface org.xml.sax.XMLReader
getContentHandler, getDTDHandler, getEntityResolver, getErrorHandler, getFeature, getProperty, parse, parse, setContentHandler, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setProperty
-
-