/* *************************************************************************************** * Copyright (C) 2006 EsperTech, Inc. All rights reserved. * * http://www.espertech.com/esper * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * *************************************************************************************** */ package com.espertech.esper.supportunit.epl; import com.espertech.esper.client.EventBean; import com.espertech.esper.epl.expression.core.*; import java.io.StringWriter; public class SupportBoolExprNode extends ExprNodeBase implements ExprEvaluator { private boolean evaluateResult; public SupportBoolExprNode(boolean evaluateResult) { this.evaluateResult = evaluateResult; } public ExprEvaluator getExprEvaluator() { return this; } public ExprNode validate(ExprValidationContext validationContext) throws ExprValidationException { return null; } public Class getType() { return Boolean.class; } public boolean isConstantResult() { return false; } public Object evaluate(EventBean[] eventsPerStream, boolean isNewData, ExprEvaluatorContext context) { return evaluateResult; } public void toPrecedenceFreeEPL(StringWriter writer) { } public ExprPrecedenceEnum getPrecedence() { return ExprPrecedenceEnum.UNARY; } public boolean equalsNode(ExprNode node, boolean ignoreStreamPrefix) { throw new UnsupportedOperationException("not implemented"); } }