75767778798081
/** * Construct a dynamic context for early evaluation of constant subexpressions */ public XPathContext makeEarlyEvaluationContext() { return new EarlyEvaluationContext(getConfiguration()); }
170171172173174175176177178
* @return a dynamic context for performing conversions */ public XPathContext getConversionContext() { if (conversionContext == null) { conversionContext = new EarlyEvaluationContext(this); } return conversionContext; }