Package org.drools.core.common

Examples of org.drools.core.common.DefaultFactHandle.invalidate()


        final DefaultFactHandle f0 = new DefaultFactHandle( 134,
                                                            "cheese" );
        assertEquals( 134,
                      f0.getId() );

        f0.invalidate();
        // invalidate no longer sets the id to -1
        assertEquals( 134,
                      f0.getId() );
    }
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.