Clover coverage report - XStream - 0.1
Coverage timestamp: Fri Oct 24 2003 13:50:04 BST
file stats: LOC: 14   Methods: 0
NCLOC: 7   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
XMLWriter.java - - - -
coverage
 1   
 package com.thoughtworks.xstream.xml;
 2   
 
 3   
 public interface XMLWriter {
 4   
 
 5   
     void startElement(String name);
 6   
 
 7   
     void addAttribute(String key, String value);
 8   
 
 9   
     void writeText(String text);
 10   
 
 11   
     void endElement();
 12   
 
 13   
 }
 14