org.apache.xalan.processor.XSLTElementProcessor.skippedEntity()方法的使用及代码示例

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

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

XSLTElementProcessor.skippedEntity介绍

[英]Receive notification of a skipped entity.
[中]接收跳过实体的通知。

代码示例

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

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

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

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

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

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

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

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Receive notification of a skipped entity.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass to take specific actions for each
 * processing instruction, such as setting status variables or
 * invoking other methods.</p>
 *
 * @param name The name of the skipped entity.
 * @see org.xml.sax.ContentHandler#processingInstruction
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 */
public void skippedEntity(String name) throws org.xml.sax.SAXException
{
 if (!m_shouldProcess)
  return;
 getCurrentProcessor().skippedEntity(this, name);
}

相关文章