
org.fuwjin.chessur.expression.CouldStatement Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2011 Michael Doberenz.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Michael Doberenz - initial API and implementation
******************************************************************************/
package org.fuwjin.chessur.expression;
import org.fuwjin.dinah.Adapter;
import org.fuwjin.grin.env.Trace;
/**
* Represents a statement that always succeeds.
*/
public class CouldStatement implements Expression {
private final Expression statement;
/**
* Creates a new instance.
* @param statement the possible statement
*/
public CouldStatement(final Expression statement) {
this.statement = statement;
}
@Override
public Object resolve(final Trace trace)
throws AbortedException, ResolveException {
try {
return trace.resolve(statement);
} catch(final ResolveException e) {
return Adapter.UNSET;
}
}
/**
* Returns the optional statement.
* @return the optional statement
*/
public Expression statement() {
return statement;
}
@Override
public String toString() {
return "could " + statement;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy