Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 18   Methods: 0
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
StateItem.java - - - -
coverage
 1    package org.jboss.cache.pojo.test.propagation;
 2   
 3    /**
 4    *
 5    */
 6    // We are using JDK1.5 annotation.
 7    @org.jboss.cache.pojo.annotation.Replicable
 8    public interface StateItem
 9    {
 10    public static final boolean STATE_CHANGED = true;
 11    public static final boolean STATE_NOT_CHANGED = false;
 12   
 13    public long getItemId();
 14   
 15    public long getState();
 16   
 17    public boolean setState(long state);
 18    }