<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Re: drools error [ERR 102] Line 40:43 mismatched input '&&' expecting ')' in rule "Free Fish Food Sample"
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/mschwery">Mike schwery</a> in <i>jBPM</i> - <a href="http://community.jboss.org/message/588797#588797">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>full rule</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>package org.drools.examples</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>import org.drools.WorkingMemory</p><p>import org.drools.examples.PetStore.Order</p><p>import org.drools.examples.PetStore.Purchase</p><p>import org.drools.examples.PetStore.Product</p><p>import java.util.ArrayList</p><p>import javax.swing.JOptionPane; </p><p>import javax.swing.JFrame&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>global JFrame frame </p><p>global javax.swing.JTextArea textArea</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>//dialect "mvel"</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>// insert each item in the shopping cart into the Working Memory </p><p>rule "Explode Cart"</p><p>&#160;&#160;&#160; agenda-group "init"</p><p>&#160;&#160;&#160; auto-focus true&#160;&#160;&#160; </p><p>&#160;&#160;&#160; salience 10</p><p>&#160;&#160;&#160; dialect "java"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order : Order( grossTotal == -1 )</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $item : Purchase() from $order.items</p><p>&#160;&#160;&#160; then</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; insert( $item );</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; drools.getKnowledgeRuntime().getAgenda().getAgendaGroup( "show items" ).setFocus();&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; drools.getKnowledgeRuntime().getAgenda().getAgendaGroup( "evaluate" ).setFocus();&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>end</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>// Free Fish Food sample when we buy a Gold Fish if we haven't already&#160; bought </p><p>// Fish Food and dont already have a Fish Food Sample</p><p>rule "Free Fish Food Sample"</p><p>&#160;&#160;&#160; agenda-group "evaluate"</p><p>&#160;&#160;&#160; dialect "mvel"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order : Order()</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; not ( $p : Product( name == "Fish Food") &amp;&amp; Purchase( product == $p )) </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; not ( $p : Product( name == "Fish Food Sample") &amp;&amp; Purchase( product == $p ) )&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; exists ( $p : Product( name == "Gold Fish") &amp;&amp; Purchase( product == $p ) )&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $fishFoodSample : Product( name == "Fish Food Sample" );</p><p>&#160;&#160;&#160; then</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println( "Adding free Fish Food Sample to cart" );</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; purchase = new Purchase($order, $fishFoodSample);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; insert( purchase );</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order.addItem( purchase );&#160;&#160;&#160; </p><p>end</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>// Suggest a tank if we have bought more than 5 gold fish and dont already have one</p><p>rule "Suggest Tank"</p><p>&#160;&#160;&#160;&#160;&#160;&#160; agenda-group "evaluate"</p><p>&#160;&#160;&#160;&#160;&#160;&#160; dialect "java"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order : Order()</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; not ( $p : Product( name == "Fish Tank") &amp;&amp; Purchase( product == $p ) )&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; ArrayList( $total : size &gt; 5 ) from collect( Purchase( product.name == "Gold Fish" ) )</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $fishTank : Product( name == "Fish Tank" )&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160; then</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; requireTank(frame, drools.getWorkingMemory(), $order, $fishTank, $total);&#160;&#160;&#160;&#160; </p><p>end&#160;&#160;&#160; </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>rule "Show Items"</p><p>&#160;&#160;&#160; agenda-group "show items"</p><p>&#160;&#160;&#160; dialect "java"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order : Order( )</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $p : Purchase( order == $order )</p><p>&#160;&#160;&#160; then&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; textArea.append( $p.getProduct() + "\n");</p><p>end</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>rule "do checkout"</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; dialect "java"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160; then</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; doCheckout(frame, drools.getWorkingMemory());</p><p>end&#160;&#160;&#160; </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>rule "Gross Total"</p><p>&#160;&#160;&#160; agenda-group "checkout"</p><p>&#160;&#160;&#160; dialect "mvel"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order : Order( grossTotal == -1)</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Number( total : doubleValue ) from accumulate( Purchase( $price : product.price ),</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sum( $price ) )</p><p>&#160;&#160;&#160; then&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; modify( $order ) { grossTotal = total }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; textArea.append( "\ngross total=" + total + "\n" );</p><p>end</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>rule "Apply 5% Discount"</p><p>&#160;&#160;&#160; agenda-group "checkout"</p><p>&#160;&#160;&#160; dialect "mvel"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order : Order( grossTotal &gt;= 10 &amp;&amp; &lt; 20 )</p><p>&#160;&#160;&#160; then</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order.discountedTotal = $order.grossTotal * 0.95;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; textArea.append( "discountedTotal total=" + $order.discountedTotal + "\n" );&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>end</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>rule "Apply 10% Discount"</p><p>&#160;&#160;&#160; agenda-group "checkout"</p><p>&#160;&#160;&#160; dialect "mvel"</p><p>&#160;&#160;&#160; when</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order : Order( grossTotal &gt;= 20 )</p><p>&#160;&#160;&#160; then</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; $order.discountedTotal = $order.grossTotal * 0.90;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; textArea.append( "discountedTotal total=" + $order.discountedTotal + "\n" );&#160;&#160;&#160; </p><p>end</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>function void doCheckout(JFrame frame, WorkingMemory workingMemory) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Object[] options = {"Yes",</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "No"};</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; int n = JOptionPane.showOptionDialog(frame,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "Would you like to checkout?",</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "",</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; JOptionPane.YES_NO_OPTION,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; JOptionPane.QUESTION_MESSAGE,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; null,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; options,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; options[0]);</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; if (n == 0) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; workingMemory.setFocus( "checkout" );</p><p>&#160;&#160;&#160;&#160;&#160;&#160; }&#160;&#160; </p><p>}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>function boolean requireTank(JFrame frame, WorkingMemory workingMemory, Order order, Product fishTank, int total) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Object[] options = {"Yes",</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "No"};</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; int n = JOptionPane.showOptionDialog(frame,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "Would you like to buy a tank for your " + total + " fish?",</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "Purchase Suggestion",</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; JOptionPane.YES_NO_OPTION,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; JOptionPane.QUESTION_MESSAGE,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; null,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; options,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; options[0]);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160; System.out.print( "SUGGESTION: Would you like to buy a tank for your "</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + total + " fish? - " );</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160;&#160;&#160;&#160; if (n == 0) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Purchase purchase = new Purchase( order, fishTank );</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; workingMemory.insert( purchase );</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; order.addItem( purchase );</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println( "Yes" );</p><p>&#160;&#160;&#160;&#160;&#160;&#160; } else {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println( "No" );</p><p>&#160;&#160;&#160;&#160;&#160;&#160; }&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160; return true;</p><p>}</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/588797#588797">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>