1 package net.sf.saxon.om; 2 3 12 13 public abstract class AxisIteratorImpl implements AxisIterator, AtomizableIterator { 14 15 protected int position = 0; 16 protected Item current; 17 private boolean isAtomizing; 18 19 23 24 public final Item current() { 25 return current; 26 } 27 28 32 33 public final int position() { 34 return position; 35 } 36 37 46 47 public void setIsAtomizing(boolean atomizing) { 48 isAtomizing = atomizing; 49 } 50 51 55 56 protected final boolean isAtomizing() { 57 return isAtomizing; 58 } 59 60 69 70 public int getProperties() { 71 return 0; 72 } 73 74 } 75 76 77 78 | Popular Tags |