Clover coverage report - Diasparsoft Toolkit - 0.22
Coverage timestamp: Mon Jun 7 2004 22:02:31 EDT
file stats: LOC: 11   Methods: 0
NCLOC: 4   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
ExceptionalClosure.java - - - -
coverage
 1   
 package com.diasparsoftware.java.util;
 2   
 
 3   
 
 4   
 /**
 5   
  * A <code>Closure</code> whose <code>execute</code>
 6   
  * method might throw an exception.
 7   
  */
 8   
 public interface ExceptionalClosure {
 9   
     Object execute(Object parameters) throws Exception;
 10   
 }
 11