1 package com.icl.saxon; 2 import com.icl.saxon.expr.Value; 3 4 8 9 public interface Binding { 10 11 14 15 public boolean isGlobal(); 16 17 20 21 public String getVariableName(); 22 23 26 27 public int getVariableFingerprint(); 28 29 32 33 public int getSlotNumber(); 34 35 39 40 public int getDataType(); 41 42 46 47 public Value constantValue(); 48 49 52 53 public boolean isAssignable(); 54 55 } 56 57 | Popular Tags |