Is there any way to have a set of rules like this one:

<rule name="rule1">
  <param type="String">s</param>
    <when>
      <cond>s.equalsIgnoreCase("dobromir")</cond>
    </when>
    <then>
      pr.println("Hi dobromir");
      retractObject( s );
    </then>
</rule>

<rule name="rule2">
  <param type="String">s</param>
    <when>
      <cond> s_not_match_rule1 </cond>
    </when>
    <then>
       pr.println("Don't know what to say!");
       retractObject( s );
    </then>
</rule>

I mean how I can use rule names in <when></when> part of rule
definition? Is it possible or I didn't understand the whole rule/facts
concept?


__________________________________________________
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/

_______________________________________________
drools-interest mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/drools-interest

Reply via email to