1 package net.sf.saxon.functions; 2 3 import net.sf.saxon.expr.Expression; 4 import net.sf.saxon.trans.XPathException; 5 6 import java.io.Serializable ; 7 8 16 17 public interface FunctionLibrary extends Serializable { 18 19 32 33 public boolean isAvailable(int fingerprint, String uri, String local, int arity); 34 35 60 61 public Expression bind(int nameCode, String uri, String local, Expression[] staticArgs) 62 throws XPathException; 63 64 70 71 public FunctionLibrary copy(); 72 73 } 74 | Popular Tags |