Package org.drools.examples.templates

Examples of org.drools.examples.templates.Person


        WorkingMemory wm = rb.newStatefulSession();
       
        //now create some test data
        wm.insert( new Cheese( "stilton",
                               42 ) );
        wm.insert( new Person( "michael",
                               "stilton",
                               42 ) );
        final List<String> list = new ArrayList<String>();
        wm.setGlobal( "list",
                      list );
View Full Code Here

TOP

Related Classes of org.drools.examples.templates.Person

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.