Examples of EvalDescr


Examples of org.drools.lang.descr.EvalDescr

        AndDescr lhs = rule.getLhs();
        List lhsList = lhs.getDescrs();
        assertEquals( 1,
                      lhsList.size() );

        EvalDescr evalDescr = (EvalDescr) lhsList.get( 0 );
        LispForm lispForm = ( LispForm ) evalDescr.getContent();
        assertEquals("(< 9.0 1.3)", lispForm.toString() );                         
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.