Package jadex.rules.rulesystem
Interface IRule
-
- All Known Implementing Classes:
Rule
public interface IRule
Interface for rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAction
getAction()
Get the action.ICondition
getCondition()
Get the condition.java.lang.String
getName()
Get the rule name.IPriorityEvaluator
getPriorityEvaluator()
Get the priority.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Get the rule name.- Returns:
- The rule name.
-
getCondition
ICondition getCondition()
Get the condition.- Returns:
- The condition.
-
getAction
IAction getAction()
Get the action.- Returns:
- The action.
-
getPriorityEvaluator
IPriorityEvaluator getPriorityEvaluator()
Get the priority.- Returns:
- The priority.
-
-