/**
* @see org.apache.ode.bpel.compiler.v1.api.ExpressionCompiler#compile(java.lang.Object)
*/
public OExpression compile(Object source) throws CompilationException {
Expression xpath = (Expression)source;
OXPath10Expression oexp = new OXPath10Expression(
_compilerContext.getOProcess(),
_qnFnGetVariableData,
_qnFnGetVariableProperty,
_qnFnGetLinkStatus);
oexp.namespaceCtx = xpath.getNamespaceContext();
doJaxenCompile(oexp, xpath);
return oexp;
}