Package net.sf.saxon.query

Examples of net.sf.saxon.query.XQueryFunction


    public XQueryFunction getDeclaration(StructuredQName functionName, Expression[] staticArgs) {
        for (Iterator it=libraryList.iterator(); it.hasNext();) {
            FunctionLibrary lib = (FunctionLibrary)it.next();
            if (lib instanceof XQueryFunctionBinder) {
                XQueryFunction func = ((XQueryFunctionBinder)lib).getDeclaration(functionName, staticArgs);
                if (func != null) {
                    return func;
                }
            }
        }
View Full Code Here

TOP

Related Classes of net.sf.saxon.query.XQueryFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.