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

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

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

XSLTElementProcessor.getElemDef介绍

[英]Get the element definition that belongs to this element.
[中]获取属于此元素的元素定义。

代码示例

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the start of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 * @param attributes The specified or defaulted attributes.
 */
public void startElement(
    StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
     throws org.xml.sax.SAXException
{
 if (m_savedLastOrder == null)
       m_savedLastOrder = new IntStack();
     m_savedLastOrder.push(getElemDef().getLastOrder());
     getElemDef().setLastOrder(-1);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the start of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 * @param attributes The specified or defaulted attributes.
 */
public void startElement(
    StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
     throws org.xml.sax.SAXException
{
 if (m_savedLastOrder == null)
       m_savedLastOrder = new IntStack();
     m_savedLastOrder.push(getElemDef().getLastOrder());
     getElemDef().setLastOrder(-1);
}

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

XSLTElementDef def = getElemDef();
AttributesImpl undefines = null;
boolean isCompatibleMode = ((null != handler.getStylesheet()

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

XSLTElementDef def = getElemDef();
AttributesImpl undefines = null;
boolean isCompatibleMode = ((null != handler.getStylesheet()

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

XSLTElementDef def = currentProcessor.getElemDef();
XSLTElementProcessor elemProcessor = def.getProcessorFor(uri, localName);

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

XSLTElementDef def = currentProcessor.getElemDef();
XSLTElementProcessor elemProcessor = def.getProcessorFor(uri, localName);

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

XSLTElementDef def = elemProcessor.getElemDef();

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

XSLTElementDef def = elemProcessor.getElemDef();

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

/**
 * Receive notification of the start of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 * @param attributes The specified or defaulted attributes.
 */
public void startElement(
    StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
     throws org.xml.sax.SAXException
{
 if (m_savedLastOrder == null)
       m_savedLastOrder = new IntStack();
     m_savedLastOrder.push(getElemDef().getLastOrder());
     getElemDef().setLastOrder(-1);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the start of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 * @param attributes The specified or defaulted attributes.
 */
public void startElement(
    StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
     throws org.xml.sax.SAXException
{
 if (m_savedLastOrder == null)
       m_savedLastOrder = new IntStack();
     m_savedLastOrder.push(getElemDef().getLastOrder());
     getElemDef().setLastOrder(-1);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

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

/**
 * Receive notification of the start of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 * @param attributes The specified or defaulted attributes.
 */
public void startElement(
    StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
     throws org.xml.sax.SAXException
{
 if (m_savedLastOrder == null)
       m_savedLastOrder = new IntStack();
     m_savedLastOrder.push(getElemDef().getLastOrder());
     getElemDef().setLastOrder(-1);
}

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

/**
 * Receive notification of the end of an element.
 *
 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
 * @param uri The Namespace URI, or an empty string.
 * @param localName The local name (without prefix), or empty string if not namespace processing.
 * @param rawName The qualified name (with prefix).
 */
public void endElement(
    StylesheetHandler handler, String uri, String localName, String rawName)
     throws org.xml.sax.SAXException
{
   if (m_savedLastOrder != null && !m_savedLastOrder.empty())
     getElemDef().setLastOrder(m_savedLastOrder.pop());
   
   if (!getElemDef().getRequiredFound())
     handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
}

相关文章