Clover coverage report - groovy - 1.0-beta-8
Coverage timestamp: Fri Dec 17 2004 14:55:55 GMT
file stats: LOC: 14   Methods: 0
NCLOC: 8   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
Prompt.java - - - -
coverage
 1   
 package org.codehaus.groovy.sandbox.ui;
 2   
 
 3   
 import java.io.IOException;
 4   
 
 5   
 public interface Prompt {
 6   
   String readLine() throws IOException;
 7   
   
 8   
   void setCompleter(Completer completer);
 9   
   
 10   
   void setPrompt(String prompt);
 11   
   
 12   
   void close();
 13   
 }
 14