Hi!

public class Blah
{
        final static CompiledExpression c =
JXPathContext.compile("whatever[blah=$var]");

        public void init(JXPathContext xpath)
        {
                xpath.getVariables().declareVariable("var", something);
        }
}

Is this valid? Can I compile the expression before I actually declare
the variable?

Reply via email to