All Downloads are FREE. Search and download functionalities are using the official Maven repository.

astra.statement.Done Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package astra.statement;

import astra.core.Intention;
import astra.formula.Formula;

public class Done extends AbstractStatement {

	public Done(String clazz, int[] data) {
		this.setLocation(clazz, data[0], data[1], data[2], data[3]);
	}

	public Done(String clazz, int[] data, Formula guard, Statement ifStatement) {
		this.setLocation(clazz, data[0], data[1], data[2], data[3]);
	}

	@Override
	public StatementHandler getStatementHandler() {
		return new AbstractStatementHandler() {
			@Override
			public boolean execute(Intention intention) {
				// System.out.println("Starting Done statement...");
				intention.done();
				// System.out.println("Completed Done statement");
				return false;
			}

			@Override
			public boolean onFail(Intention context) {
				return false;
			}

			@Override
			public Statement statement() {
				return Done.this;
			}
			
			public String toString() {
				return "done()";
			}
		};
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy