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

jadex.rules.rulesystem.IRule Maven / Gradle / Ivy

package jadex.rules.rulesystem;

import jadex.rules.rulesystem.rules.IPriorityEvaluator;

/**
 *  Interface for rules.
 */
public interface IRule
{
	/**
	 *  Get the rule name.
	 *  @return The rule name.
	 */
	public String getName();
	
	/**
	 *  Get the condition.
	 *  @return The condition.
	 */
	public ICondition getCondition();

	/**
	 *  Get the action.
	 *  @return The action.
	 */
	public IAction getAction();
	
	/**
	 *  Get the priority. 
	 *  @return The priority.
	 */
	public IPriorityEvaluator getPriorityEvaluator();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy