1 26 27 package net.sourceforge.groboutils.codecoverage.v2.datastore; 28 29 import java.io.IOException ; 30 31 import net.sourceforge.groboutils.codecoverage.v2.IAnalysisModule; 32 33 34 41 public interface IMetaDataReader 42 { 43 46 public IClassMetaDataReader getClassReader( IAnalysisModule module ) 47 throws IOException ; 48 49 50 53 public AnalysisModuleSet getAnalysisModuleSet() 54 throws IOException ; 55 56 57 60 public void close() 61 throws IOException ; 62 } 63 64 | Popular Tags |