| net.sourceforge.groboutils.codecoverage.v2.IChannelLogger
All known Subclasses: net.sourceforge.groboutils.codecoverage.v2.logger.SingleSourceLogger, net.sourceforge.groboutils.codecoverage.v2.logger.NoOpChannelLogger, net.sourceforge.groboutils.codecoverage.v2.logger.StdoutChannelLogger, net.sourceforge.groboutils.codecoverage.v2.logger.DirectoryChannelLogger,
IChannelLogger | public interface IChannelLogger (Code) | | Logs a particular channel's instruction mark coverage.
author: Matt Albrecht groboclown@users.sourceforge.net version: $Date: 2003/02/10 22:51:25 $ since: December 15, 2002 |
Method Summary | |
public void | cover(String classSignature, short methodIndex, short markIndex) Records a coverage of a marked bytecode instruction. |
cover | public void cover(String classSignature, short methodIndex, short markIndex)(Code) | | Records a coverage of a marked bytecode instruction. This method should
never throw an exception.
Parameters: classSignature - a signature of the class file being covered.this signature includes the fully-qualified name of the class,along with a checksum to uniquely identify it. Parameters: methodIndex - index for a method within the class. The meta-datastore will know how to translate the index to a method signature. Parameters: markIndex - the index of the bytecode instruction mark for thisparticular channel. |
|
|