org.apache.xpath.objects.XObject.appendToFsb()方法的使用及代码示例

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

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

XObject.appendToFsb介绍

[英]Cast result object to a string. NEEDSDOC @param fsb
[中]将结果对象强制转换为字符串。NEEDSDOC@param fsb

代码示例

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Cast result object to a string.
 *
 * @return The string this wraps or the empty string if null
 */
public void appendToFsb(org.apache.xml.utils.FastStringBuffer fsb)
{
 XString xstring = (XString)xstr();
 xstring.appendToFsb(fsb);
}

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

/**
 * Cast result object to a string.
 *
 * @return The string this wraps or the empty string if null
 */
public void appendToFsb(org.apache.xml.utils.FastStringBuffer fsb)
{
 XString xstring = (XString)xstr();
 xstring.appendToFsb(fsb);
}

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

/**
 * Cast result object to a string.
 *
 * @return The string this wraps or the empty string if null
 */
public void appendToFsb(org.apache.xml.utils.FastStringBuffer fsb)
{
 XString xstring = (XString)xstr();
 xstring.appendToFsb(fsb);
}

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

/**
 * Cast result object to a string.
 *
 * @return The string this wraps or the empty string if null
 */
public void appendToFsb(org.apache.xml.utils.FastStringBuffer fsb)
{
 XString xstring = (XString)xstr();
 xstring.appendToFsb(fsb);
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

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

/**
 * Write the value into the buffer.
 *
 * @param xctxt An XPathContext object, providing infomation specific
 * to this invocation and this thread. Maintains SAX state, variables, 
 * error handler and  so on, so the transformation/XPath object itself
 * can be simultaneously invoked from multiple threads.
 * @param buf Buffer to write into.
 * @param context The current source tree context.
 * @param nsNode The current namespace context (stylesheet tree context).
 *
 * @throws javax.xml.transform.TransformerException
 */
public void evaluate(
    XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
     throws javax.xml.transform.TransformerException
{
 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
 if (null != xobj)
 {
  xobj.appendToFsb(buf);
 }
}

相关文章