Package net.sf.saxon.functions

Examples of net.sf.saxon.functions.IntegratedFunctionLibrary


                        new NameTest(Type.ELEMENT, NamespaceConstant.SAXON, "catch", getNamePool()));
                StyleElement catcher = (StyleElement)catchers.next();
                if (catcher != null) {
                    for (int i=0; i<errorVariables.length; i++) {
                        if (errorVariables[i].getLocalName().equals(qName.getLocalName())) {
                            IntegratedFunctionLibrary lib = getConfiguration().getVendorFunctionLibrary();
                            StructuredQName functionName =
                                    new StructuredQName("saxon", NamespaceConstant.SAXON, "dynamic-error-info");
                            Expression[] args = new Expression[]{new StringLiteral(qName.getLocalName())};
                            return lib.bind(functionName, args, this);
                        }
                    }
                }
            }
            XPathException err = new XPathException("Variable " + qName.getDisplayName() +
View Full Code Here

TOP

Related Classes of net.sf.saxon.functions.IntegratedFunctionLibrary

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.