Uses of Interface
net.sourceforge.groboutils.codecoverage.v2.IAnalysisModule

Packages that use IAnalysisModule
net.sourceforge.groboutils.codecoverage.v2.ant Ant interface for performing the code coverage tasks. 
net.sourceforge.groboutils.codecoverage.v2.compiler Handles the post-compilation engine. 
net.sourceforge.groboutils.codecoverage.v2.datastore Controls the meta-data access for post-compilation and report generation, and logging data. 
net.sourceforge.groboutils.codecoverage.v2.module All analysis modules and their supporting classes. 
net.sourceforge.groboutils.codecoverage.v2.report Generates reports on the coverage metrics. 
 

Uses of IAnalysisModule in net.sourceforge.groboutils.codecoverage.v2.ant
 

Methods in net.sourceforge.groboutils.codecoverage.v2.ant that return IAnalysisModule
 IAnalysisModule AnalysisModuleType.getAnalysisModule()
          This method is guaranteed to never return null.
 

Uses of IAnalysisModule in net.sourceforge.groboutils.codecoverage.v2.compiler
 

Constructors in net.sourceforge.groboutils.codecoverage.v2.compiler with parameters of type IAnalysisModule
PostCompileClass(IMetaDataWriter writer, IAnalysisModule[] modules)
           
PostCompileClass(ParseCoverageLogger pcl, IMetaDataWriter writer, IAnalysisModule[] modules)
           
 

Uses of IAnalysisModule in net.sourceforge.groboutils.codecoverage.v2.datastore
 

Methods in net.sourceforge.groboutils.codecoverage.v2.datastore that return IAnalysisModule
 IAnalysisModule[] AnalysisModuleSet.getAnalysisModules()
          Return a complete list of modules in order.
 IAnalysisModule AnalysisModuleSet.getAnalysisModuleAt(short index)
          Returns the module stored at the given index index.
 

Methods in net.sourceforge.groboutils.codecoverage.v2.datastore with parameters of type IAnalysisModule
 IClassMetaDataWriter IMetaDataWriter.getClassWriter(IAnalysisModule module)
          Returns a mark meta-data writer for a specific class.
 IClassMetaDataReader IMetaDataReader.getClassReader(IAnalysisModule module)
          Returns a mark meta-data reader for a specific class signature.
 IClassMetaDataWriter DirMetaDataWriter.getClassWriter(IAnalysisModule module)
          Returns a mark meta-data writer for a specific class.
 IClassMetaDataReader DirMetaDataReader.getClassReader(IAnalysisModule module)
          Returns a mark meta-data reader for a specific class signature.
 MarkRecord[] ClassRecord.getMarksForAnalysisModule(IAnalysisModule am)
           
 void AnalysisModuleSet.addAnalysisModules(IAnalysisModule[] modules)
          Add an array of modules to this set.
 void AnalysisModuleSet.addAnalysisModule(IAnalysisModule module)
          Add a module to the set.
 short AnalysisModuleSet.getAnalysisModuleIndex(IAnalysisModule am)
          Returns the module am's index.
 

Constructors in net.sourceforge.groboutils.codecoverage.v2.datastore with parameters of type IAnalysisModule
AnalysisModuleSet(IAnalysisModule[] modules)
          Create an instance using the given array of modules as the default set.
 

Uses of IAnalysisModule in net.sourceforge.groboutils.codecoverage.v2.module
 

Classes in net.sourceforge.groboutils.codecoverage.v2.module that implement IAnalysisModule
 class BranchCountMeasure
          Processes methods for branch coverage analysis, where each branch instruction and its corresponding not-taken instruction are marked.
 class BytecodeCountMeasure
          Processes methods for instruction-count coverage analysis.
 class CallPairMeasure
          Processes methods for call pair coverage analysis, where each function call instruction are marked.
 class FunctionMeasure
          Processes methods for function coverage analysis, which checks that each method/function has been invoked.
 class LineCountMeasure
          Processes methods for line-count coverage analysis.
 

Uses of IAnalysisModule in net.sourceforge.groboutils.codecoverage.v2.report
 

Methods in net.sourceforge.groboutils.codecoverage.v2.report with parameters of type IAnalysisModule
 void XmlReportGenerator.writeReport(IAnalysisModule module, AnalysisModuleData data, java.io.Writer out)
          Sends the generated report to out using the given module and data set.
 void IReportGenerator.writeReport(IAnalysisModule module, AnalysisModuleData data, java.io.Writer out)
          Sends the generated report to out using the given module and data set.
 

Constructors in net.sourceforge.groboutils.codecoverage.v2.report with parameters of type IAnalysisModule
AnalysisModuleData(IAnalysisModule module, IMetaDataReader mdr, IChannelLogReader clr)
           
 



Copyright © 2001-2003 by The GroboUtils Project