conf.setSequential( true );
ReteooRuleBase ruleBase = new ReteooRuleBase( conf );
ReteooBuilder builder = new ReteooBuilder( ruleBase );
final Consequence consequence = new Consequence() {
public void evaluate(KnowledgeHelper knowledgeHelper,
WorkingMemory workingMemory) throws Exception {
System.out.println( "Consequence!" );
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {