1 package net.sf.saxon.expr; 2 import net.sf.saxon.om.ValueRepresentation; 3 import net.sf.saxon.trans.XPathException; 4 5 10 11 public interface Binding { 12 13 16 17 public ValueRepresentation evaluateVariable(XPathContext context) throws XPathException; 18 19 23 24 public boolean isGlobal(); 25 26 31 32 public boolean isAssignable(); 33 34 38 39 public int getLocalSlotNumber(); 40 41 } 42 43 | Popular Tags |