Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 18   Methods: 0
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
StateTransferIntegrator.java - - - -
coverage
 1    /*
 2    * JBoss, the OpenSource J2EE webOS
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7    package org.jboss.cache.statetransfer;
 8   
 9    import org.jboss.cache.Node;
 10   
 11    import java.io.ObjectInputStream;
 12   
 13    public interface StateTransferIntegrator
 14    {
 15   
 16    void integrateState(ObjectInputStream ois, Node target) throws Exception;
 17   
 18    }