Package jadex.rules.examples.manners
Interface IMannersRuleSet
-
- All Known Implementing Classes:
MannersRules,MannersRulesClips,MannersRulesJCL
public interface IMannersRuleSetInterface for exchanging rule sets. Rule set implementations provide the same rules, but demonstrate the different rule languages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IRulecreateAllDoneRule()Create rule "all done".IRulecreateAreWeDoneRule()Create rule "we are done".IRulecreateAssignFirstSeatRule()Create rule "assign first seat".IRulecreateContinueRule()Create rule "continue".IRulecreateFindSeatingRule()Create find_seating rule.IRulecreateMakePathRule()Create rule "make path".IRulecreatePathDoneRule()Create rule "path done".IRulecreatePrintResultsRule()Create rule "print results".
-
-
-
Method Detail
-
createAssignFirstSeatRule
IRule createAssignFirstSeatRule()
Create rule "assign first seat".
-
createFindSeatingRule
IRule createFindSeatingRule()
Create find_seating rule.
-
createMakePathRule
IRule createMakePathRule()
Create rule "make path".
-
createPathDoneRule
IRule createPathDoneRule()
Create rule "path done".
-
createAreWeDoneRule
IRule createAreWeDoneRule()
Create rule "we are done".
-
createContinueRule
IRule createContinueRule()
Create rule "continue".
-
createPrintResultsRule
IRule createPrintResultsRule()
Create rule "print results".
-
createAllDoneRule
IRule createAllDoneRule()
Create rule "all done".
-
-