1 61 62 63 package org.jaxen.expr.iter; 64 65 import java.util.Iterator ; 66 67 import org.jaxen.ContextSupport; 68 import org.jaxen.UnsupportedAxisException; 69 70 public class IterablePrecedingAxis extends IterableAxis 71 { 72 public IterablePrecedingAxis(int value) 73 { 74 super( value ); 75 } 76 77 public Iterator iterator(Object contextNode, 78 ContextSupport support) throws UnsupportedAxisException 79 { 80 return support.getNavigator().getPrecedingAxisIterator( contextNode ); 81 } 82 } 83 | Popular Tags |