- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.resetAllVariableValues()
方法的一些代码示例,展示了XPathContextMajor.resetAllVariableValues()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XPathContextMajor.resetAllVariableValues()
方法的具体详情如下:
包路径:net.sf.saxon.expr.XPathContextMajor
类名称:XPathContextMajor
方法名:resetAllVariableValues
[英]Overwrite all the variables in the stack frame
[中]覆盖堆栈框架中的所有变量
代码示例来源:origin: net.sf.saxon/Saxon-HE
public TailCall processLeavingTail(XPathContext context) throws XPathException {
XPathContext c = context;
while (!(c instanceof XPathContextMajor)) {
c = c.getCaller();
}
XPathContextMajor cm = (XPathContextMajor)c;
if (actualParams.length == 1) {
cm.setLocalVariable(actualParams[0].getSlotNumber(), actualParams[0].getSelectValue(context));
} else {
// we can't overwrite any of the parameters until we've evaluated all of them: test iterate012
Sequence[] oldVars = cm.getAllVariableValues();
Sequence[] newVars = Arrays.copyOf(oldVars, oldVars.length);
for (WithParam wp : actualParams) {
newVars[wp.getSlotNumber()] = wp.getSelectValue(context);
}
cm.resetAllVariableValues(newVars);
}
cm.requestTailCall(this, null);
return null;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
public TailCall processLeavingTail(XPathContext context) throws XPathException {
XPathContext c = context;
while (!(c instanceof XPathContextMajor)) {
c = c.getCaller();
}
XPathContextMajor cm = (XPathContextMajor)c;
if (actualParams.length == 1) {
cm.setLocalVariable(actualParams[0].getSlotNumber(), actualParams[0].getSelectValue(context));
} else {
// we can't overwrite any of the parameters until we've evaluated all of them: test iterate012
Sequence[] oldVars = cm.getAllVariableValues();
Sequence[] newVars = Arrays.copyOf(oldVars, oldVars.length);
for (WithParam wp : actualParams) {
newVars[wp.getSlotNumber()] = wp.getSelectValue(context);
}
cm.resetAllVariableValues(newVars);
}
cm.requestTailCall(this, null);
return null;
}
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.getCurrentMode()方法的一些代码示例,展示了XPathContextMajor.getCurr
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setURIResolver()方法的一些代码示例,展示了XPathContextMajor.setURIR
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setCurrentOutputUri()方法的一些代码示例,展示了XPathContextMajor.se
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setOriginatingConstructType()方法的一些代码示例,展示了XPathContext
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.trackFocus()方法的一些代码示例,展示了XPathContextMajor.trackFocus(
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.waitForChildThreads()方法的一些代码示例,展示了XPathContextMajor.wa
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setCurrentException()方法的一些代码示例,展示了XPathContextMajor.se
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setCurrentMergeGroupIterator()方法的一些代码示例,展示了XPathContex
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setCurrentComponent()方法的一些代码示例,展示了XPathContextMajor.se
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.getOrigin()方法的一些代码示例,展示了XPathContextMajor.getOrigin()的
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.changeOutputDestination()方法的一些代码示例,展示了XPathContextMajo
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.resetAllVariableValues()方法的一些代码示例,展示了XPathContextMajor
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.getURIResolver()方法的一些代码示例,展示了XPathContextMajor.getURIR
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setErrorListener()方法的一些代码示例,展示了XPathContextMajor.setEr
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setLocalVariable()方法的一些代码示例,展示了XPathContextMajor.setLo
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.getStackFrame()方法的一些代码示例,展示了XPathContextMajor.getStack
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.openStackFrame()方法的一些代码示例,展示了XPathContextMajor.openSta
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setStackFrame()方法的一些代码示例,展示了XPathContextMajor.setStack
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.()方法的一些代码示例,展示了XPathContextMajor.()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.setCurrentMode()方法的一些代码示例,展示了XPathContextMajor.setCurr
我是一名优秀的程序员,十分优秀!