org.xml.sax.helpers.XMLFilterImpl.unparsedEntityDecl()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(6.0k)|赞(0)|评价(0)|浏览(130)

本文整理了Java中org.xml.sax.helpers.XMLFilterImpl.unparsedEntityDecl()方法的一些代码示例,展示了XMLFilterImpl.unparsedEntityDecl()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLFilterImpl.unparsedEntityDecl()方法的具体详情如下:
包路径:org.xml.sax.helpers.XMLFilterImpl
类名称:XMLFilterImpl
方法名:unparsedEntityDecl

XMLFilterImpl.unparsedEntityDecl介绍

[英]Filter an unparsed entity declaration event.
[中]筛选未分析的实体声明事件。

代码示例

代码示例来源:origin: igniterealtime/Openfire

@Override
public void unparsedEntityDecl(String name, String publicID, String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: org.dom4j/dom4j

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: dom4j/dom4j

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: org.dom4j/org.motechproject.org.dom4j

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.dom4j

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: net.sf.practicalxml/practicalxml

@Override
public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName)
throws SAXException
{
  _filter.unparsedEntityDecl(name, publicId, systemId, notationName);
}

代码示例来源:origin: org.dom4j/com.springsource.org.dom4j

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxp-ri

/** SAX DTDHandler API.
 *
 * <p>Captured here only to detect the end of the prolog so that
 * we can ignore subsequent oasis-xml-catalog PIs. Otherwise
 * the events are just passed through.</p>
 */
public void unparsedEntityDecl (String name,
        String publicId,
        String systemId,
        String notationName) 
 throws SAXException {
 allowXMLCatalogPI = false;
 super.unparsedEntityDecl (name, publicId, systemId, notationName);
}

代码示例来源:origin: maven/dom4j

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: com.alibaba.citrus.tool/antx-autoexpand

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: org.igniterealtime.openfire/xmppserver

@Override
public void unparsedEntityDecl(String name, String publicID, String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: org.jenkins-ci.dom4j/dom4j

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: apache/servicemix-bundles

public void unparsedEntityDecl(String name, String publicID,
    String systemID, String notationName) throws SAXException {
  super.unparsedEntityDecl(name, publicID, systemID, notationName);
}

代码示例来源:origin: xml-resolver/xml-resolver

/** SAX DTDHandler API.
 *
 * <p>Captured here only to detect the end of the prolog so that
 * we can ignore subsequent oasis-xml-catalog PIs. Otherwise
 * the events are just passed through.</p>
 */
public void unparsedEntityDecl (String name,
        String publicId,
        String systemId,
        String notationName) 
 throws SAXException {
 allowXMLCatalogPI = false;
 super.unparsedEntityDecl (name, publicId, systemId, notationName);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xmlresolver

/** SAX DTDHandler API.
 *
 * <p>Captured here only to detect the end of the prolog so that
 * we can ignore subsequent oasis-xml-catalog PIs. Otherwise
 * the events are just passed through.</p>
 */
public void unparsedEntityDecl (String name,
        String publicId,
        String systemId,
        String notationName) 
 throws SAXException {
 allowXMLCatalogPI = false;
 super.unparsedEntityDecl (name, publicId, systemId, notationName);
}

代码示例来源:origin: com.sun.xml.parsers/jaxp-ri

/** SAX DTDHandler API.
 *
 * <p>Captured here only to detect the end of the prolog so that
 * we can ignore subsequent oasis-xml-catalog PIs. Otherwise
 * the events are just passed through.</p>
 */
public void unparsedEntityDecl (String name,
        String publicId,
        String systemId,
        String notationName) 
 throws SAXException {
 allowXMLCatalogPI = false;
 super.unparsedEntityDecl (name, publicId, systemId, notationName);
}

代码示例来源:origin: com.sun.org.apache.xml.internal/resolver

/** SAX DTDHandler API.
 *
 * <p>Captured here only to detect the end of the prolog so that
 * we can ignore subsequent oasis-xml-catalog PIs. Otherwise
 * the events are just passed through.</p>
 */
public void unparsedEntityDecl (String name,
        String publicId,
        String systemId,
        String notationName) 
 throws SAXException {
 allowXMLCatalogPI = false;
 super.unparsedEntityDecl (name, publicId, systemId, notationName);
}

代码示例来源:origin: sun-jaxb/jaxb-xjc

/** SAX DTDHandler API.
 *
 * <p>Captured here only to detect the end of the prolog so that
 * we can ignore subsequent oasis-xml-catalog PIs. Otherwise
 * the events are just passed through.</p>
 */
public void unparsedEntityDecl (String name,
        String publicId,
        String systemId,
        String notationName) 
 throws SAXException {
 allowXMLCatalogPI = false;
 super.unparsedEntityDecl (name, publicId, systemId, notationName);
}

代码示例来源:origin: org.apache.xml/com.springsource.org.apache.xml.resolver

/** SAX DTDHandler API.
 *
 * <p>Captured here only to detect the end of the prolog so that
 * we can ignore subsequent oasis-xml-catalog PIs. Otherwise
 * the events are just passed through.</p>
 */
public void unparsedEntityDecl (String name,
        String publicId,
        String systemId,
        String notationName) 
 throws SAXException {
 allowXMLCatalogPI = false;
 super.unparsedEntityDecl (name, publicId, systemId, notationName);
}

相关文章

微信公众号

最新文章

更多