Clover coverage report - XStream - 0.1
Coverage timestamp: Fri Oct 24 2003 13:50:04 BST
file stats: LOC: 23   Methods: 0
NCLOC: 12   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
ObjectTree.java - - - -
coverage
 1   
 package com.thoughtworks.xstream.objecttree;
 2   
 
 3   
 public interface ObjectTree {
 4   
 
 5   
     void push(String fieldName);
 6   
 
 7   
     void pop();
 8   
 
 9   
     Object get();
 10   
 
 11   
     Class type();
 12   
 
 13   
     void set(Object value);
 14   
 
 15   
     void create(Class type);
 16   
 
 17   
     String[] fieldNames();
 18   
 
 19   
     ObjectTree newStack(Object instance);
 20   
 
 21   
     ObjectTree newStack(Class type);
 22   
 }
 23