return (List) konst.getVal();
throw new TypeCastException(TypeCastException.TYPE_NODELIST, konst.getVal().toString());
}
public Node evaluateNode(OExpression cexp, EvaluationContext context) throws FaultException, EvaluationException {
OConstantExpression konst = (OConstantExpression) cexp;
if (konst.getVal() instanceof Node)
return (Node) konst.getVal();
throw new TypeCastException(TypeCastException.TYPE_NODE, konst.getVal().toString());
}