Package client.net.sf.saxon.ce.expr

Examples of client.net.sf.saxon.ce.expr.EarlyEvaluationContext


    /**
     * Construct a dynamic context for early evaluation of constant subexpressions
     */

    public XPathContext makeEarlyEvaluationContext() {
        return new EarlyEvaluationContext(getConfiguration());
    }
View Full Code Here


     * @return a dynamic context for performing conversions
     */

    public XPathContext getConversionContext() {
        if (conversionContext == null) {
            conversionContext = new EarlyEvaluationContext(this);
        }
        return conversionContext;
    }
View Full Code Here

TOP

Related Classes of client.net.sf.saxon.ce.expr.EarlyEvaluationContext

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.