Clover coverage report - Common - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:13:46 CET
file stats: LOC: 46   Methods: 3
NCLOC: 14   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
DefaultRule.java - - 0% 0%
coverage
 1   
 /*
 2   
  * EJTools, the Enterprise Java Tools
 3   
  *
 4   
  * Distributable under LGPL license.
 5   
  * See terms of license at www.gnu.org.
 6   
  */
 7   
 package org.ejtools.util.state;
 8   
 
 9   
 import java.util.Map;
 10   
 
 11   
 /**
 12   
  * @author    Laurent Etiemble
 13   
  * @version   $Revision: 1.2 $
 14   
  */
 15   
 public class DefaultRule implements Rule
 16   
 {
 17   
    /**
 18   
     * Description of the Method
 19   
     *
 20   
     * @param context  Description of the Parameter
 21   
     */
 22  0
    public void loadBody(Map context)
 23   
    {
 24   
    }
 25   
 
 26   
 
 27   
    /**
 28   
     * Description of the Method
 29   
     *
 30   
     * @param context  Description of the Parameter
 31   
     */
 32  0
    public void loadEnter(Map context)
 33   
    {
 34   
    }
 35   
 
 36   
 
 37   
    /**
 38   
     * Description of the Method
 39   
     *
 40   
     * @param context  Description of the Parameter
 41   
     */
 42  0
    public void loadExit(Map context)
 43   
    {
 44   
    }
 45   
 }
 46