01: // Copyright (c) 2003 Per M.A. Bothner.
02: // This is free software; for terms and warranty disclaimer see ./COPYING.
03:
04: package gnu.kawa.xml;
05:
06: import gnu.lists.*;
07:
08: /** Used to implement a parent:: step in a path expression. */
09:
10: public class ParentAxis extends TreeScanner {
11: public static ParentAxis make(NodePredicate type) {
12: ParentAxis axis = new ParentAxis();
13: axis.type = type;
14: return axis;
15: }
16:
17: public void scan(AbstractSequence seq, int ipos,
18: PositionConsumer out) {
19: ipos = seq.parentPos(ipos);
20: int end = seq.endPos();
21: if (ipos != end && type.isInstancePos(seq, ipos))
22: out.writePosition(seq, ipos);
23: }
24: }
|