Clover coverage report - Drools - 2.0-rc2
Coverage timestamp: Wed May 11 2005 07:12:26 BST
file stats: LOC: 23   Methods: 0
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
FactHandleFactory.java - - - -
coverage
 1    package org.drools.reteoo;
 2   
 3    import java.io.Serializable;
 4   
 5    import org.drools.FactHandle;
 6   
 7    public interface FactHandleFactory
 8    extends
 9    Serializable
 10    {
 11    /**
 12    * Construct a handle with a new id.
 13    * @return The handle.
 14    */
 15    FactHandle newFactHandle();
 16   
 17    /**
 18    * Construct a handle with a specified id.
 19    * @param id The id to use.
 20    * @return The handle.
 21    */
 22    FactHandle newFactHandle(long id);
 23    }