Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 23   Methods: 0
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ObjectStreamFactory.java - - - -
coverage
 1    package org.jboss.cache.marshall;
 2   
 3    import java.io.IOException;
 4    import java.io.InputStream;
 5    import java.io.ObjectInputStream;
 6    import java.io.ObjectOutputStream;
 7    import java.io.OutputStream;
 8   
 9    /**
 10    * ObjectStreamFactory
 11    *
 12    * @author Clebert Suconic
 13    * @author <a href="mailto:galder.zamarreno@jboss.com">Galder Zamarreno</a>
 14    * @since 1.4.1
 15    */
 16    public interface ObjectStreamFactory
 17    {
 18    public ObjectOutputStream createObjectOutputStream(OutputStream out) throws IOException;
 19   
 20    public ObjectInputStream createObjectInputStream(byte[] bytes) throws IOException;
 21   
 22    public ObjectInputStream createObjectInputStream(InputStream in) throws IOException;
 23    }