Package jadex.rules.rulesystem
Interface IRule
-
- All Known Implementing Classes:
Rule
public interface IRuleInterface for rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IActiongetAction()Get the action.IConditiongetCondition()Get the condition.java.lang.StringgetName()Get the rule name.IPriorityEvaluatorgetPriorityEvaluator()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.
-
-