org.apache.xalan.templates.XUnresolvedVariable类的使用及代码示例

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

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

XUnresolvedVariable介绍

[英]An instance of this class holds unto a variable until it is executed. It is used at this time for global variables which must (we think) forward reference.
[中]这个类的一个实例在变量被执行之前一直保持不变。此时,它被用于必须(我们认为)向前参考的全局变量。

代码示例

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. new Object[]{((ElemVariable)this.object()).getName().getLocalName()});

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. new Object[]{((ElemVariable)this.object()).getName().getLocalName()});

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

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

  1. /**
  2. * Given a request type, return the equivalent string.
  3. * For diagnostic purposes.
  4. *
  5. * @return An informational string.
  6. */
  7. public String getTypeString()
  8. {
  9. return "XUnresolvedVariable (" + object().getClass().getName() + ")";
  10. }

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

  1. XObject xobj = new XUnresolvedVariable(v, contextNode, this,
  2. vs.getStackFrame(), 0, true);

相关文章