1 26 27 package net.sourceforge.groboutils.codecoverage.v2.datastore; 28 29 import java.io.IOException ; 30 31 32 39 public interface IClassMetaDataReader 40 { 41 51 public ClassRecord readClass( String classSignature ) 52 throws IOException ; 53 54 55 63 public String [] getClassSignatures() 64 throws IOException ; 65 66 67 73 public void close() 74 throws IOException ; 75 } 76 77 | Popular Tags |