当前位置: 首页>>代码示例>>Java>>正文


Java NodeTest.WILD属性代码示例

本文整理汇总了Java中com.sun.org.apache.xpath.internal.patterns.NodeTest.WILD属性的典型用法代码示例。如果您正苦于以下问题:Java NodeTest.WILD属性的具体用法?Java NodeTest.WILD怎么用?Java NodeTest.WILD使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.sun.org.apache.xpath.internal.patterns.NodeTest的用法示例。


在下文中一共展示了NodeTest.WILD属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getStepNS

/**
 * Get the namespace of the step.
 *
 * @param opPosOfStep The position of the FROM_XXX step.
 *
 * @return The step's namespace, NodeTest.WILD, or null for null namespace.
 */
public String getStepNS(int opPosOfStep)
{

  int argLenOfStep = getArgLengthOfStep(opPosOfStep);

  // System.out.println("getStepNS.argLenOfStep: "+argLenOfStep);
  if (argLenOfStep == 3)
  {
    int index = m_opMap.elementAt(opPosOfStep + 4);

    if (index >= 0)
      return (String) m_tokenQueue.elementAt(index);
    else if (OpCodes.ELEMWILDCARD == index)
      return NodeTest.WILD;
    else
      return null;
  }
  else
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:27,代码来源:OpMap.java

示例2: asNode

/**
 * Return the first node out of the nodeset, if this expression is
 * a nodeset expression.  This is the default implementation for
 * nodesets.
 * <p>WARNING: Do not mutate this class from this function!</p>
 * @param xctxt The XPath runtime context.
 * @return the first node out of the nodeset, or DTM.NULL.
 */
public int asNode(XPathContext xctxt)
  throws javax.xml.transform.TransformerException
{
  if(getPredicateCount() > 0)
    return super.asNode(xctxt);

  int current = xctxt.getCurrentNode();

  DTM dtm = xctxt.getDTM(current);
  DTMAxisTraverser traverser = dtm.getAxisTraverser(m_axis);

  String localName = getLocalName();
  String namespace = getNamespace();
  int what = m_whatToShow;

  // System.out.print(" (DescendantIterator) ");

  // System.out.println("what: ");
  // NodeTest.debugWhatToShow(what);
  if(DTMFilter.SHOW_ALL == what
     || localName == NodeTest.WILD
     || namespace == NodeTest.WILD)
  {
    return traverser.first(current);
  }
  else
  {
    int type = getNodeTypeTest(what);
    int extendedType = dtm.getExpandedTypeID(namespace, localName, type);
    return traverser.first(current, extendedType);
  }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:40,代码来源:DescendantIterator.java

示例3: getStepLocalName

/**
 * Get the local name of the step.
 * @param opPosOfStep The position of the FROM_XXX step.
 *
 * @return OpCodes.EMPTY, OpCodes.ELEMWILDCARD, or the local name.
 */
public String getStepLocalName(int opPosOfStep)
{

  int argLenOfStep = getArgLengthOfStep(opPosOfStep);

  // System.out.println("getStepLocalName.argLenOfStep: "+argLenOfStep);
  int index;

  switch (argLenOfStep)
  {
  case 0 :
    index = OpCodes.EMPTY;
    break;
  case 1 :
    index = OpCodes.ELEMWILDCARD;
    break;
  case 2 :
    index = m_opMap.elementAt(opPosOfStep + 4);
    break;
  case 3 :
    index = m_opMap.elementAt(opPosOfStep + 5);
    break;
  default :
    index = OpCodes.EMPTY;
    break;  // Should assert error
  }

  // int index = (argLenOfStep == 3) ? m_opMap[opPosOfStep+5]
  //                                  : ((argLenOfStep == 1) ? -3 : -2);
  if (index >= 0)
    return (String) m_tokenQueue.elementAt(index).toString();
  else if (OpCodes.ELEMWILDCARD == index)
    return NodeTest.WILD;
  else
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:42,代码来源:OpMap.java


注:本文中的com.sun.org.apache.xpath.internal.patterns.NodeTest.WILD属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。