1 22 23 package org.xquark.xquery.metadata; 24 25 import org.xquark.xquery.parser.LibraryFunctionCall; 26 import org.xquark.xquery.parser.XQueryException; 27 28 29 public interface InvokerInterface { 30 31 public Object invoke(String funcName, Object [] params) throws XQueryException; 32 public Object invoke(LibraryFunctionCall lfc, Object [] params) throws XQueryException; 33 public void setDC(DynamicContext dc); 34 35 } 36 | Popular Tags |