⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ancestoraxis.java

📁 A framework written in Java for implementing high-level and dynamic languages, compiling them into J
💻 JAVA
字号:
// Copyright (c) 2003  Per M.A. Bothner.// This is free software;  for terms and warranty disclaimer see ./COPYING.package gnu.kawa.xml;import gnu.lists.*;/** Used to implement a ancestor:: step in a path expression. */public class AncestorAxis extends TreeScanner{  public static AncestorAxis make (NodePredicate type)  {    AncestorAxis axis = new AncestorAxis();    axis.type = type;    return axis;  }  private static void scan (AbstractSequence seq, int ipos, int end,			    NodePredicate type, PositionConsumer out)  {    ipos = seq.parentPos(ipos);    if (ipos != end)      {	scan(seq, ipos, end, type, out);        if (type.isInstancePos(seq, ipos))          out.writePosition(seq, ipos);      }  }  public void scan (AbstractSequence seq, int ipos, PositionConsumer out)  {     scan(seq, ipos, seq.endPos(), type, out);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -