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

astra.statement.AbstractStatementHandler Maven / Gradle / Ivy

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

import java.util.Queue;

import astra.core.RuleExecutor;
import astra.formula.Formula;
import astra.formula.Goal;

public abstract class AbstractStatementHandler implements StatementHandler {
	protected RuleExecutor executor;
	
	public void addGoals(Queue list, Goal goal) {
		// Do nothing by default...
	}

	public void setRuleExecutor(RuleExecutor executor) {
		this.executor = executor;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy