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

astra.tr.TRStopAction Maven / Gradle / Ivy

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

import java.util.Map;

import astra.term.Term;

public class TRStopAction extends AbstractAction {
	public ActionHandler getStatementHandler() {
		return new ActionHandler() {
			public boolean execute(TRContext context, Map bindings) {
//				System.out.println("stopping...");
				context.stopFunction();
				return false;
			}
		};
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy