net.sourceforge.groboutils.codecoverage.v2
Interface IChannelLogger

All Known Implementing Classes:
DirectoryChannelLogger, NoOpChannelLogger

public interface IChannelLogger

Logs a particular channel's instruction mark coverage.

Since:
December 15, 2002
Version:
$Date: 2003/02/10 22:51:25 $
Author:
Matt Albrecht groboclown@users.sourceforge.net

Method Summary
 void cover(java.lang.String classSignature, short methodIndex, short markIndex)
          Records a coverage of a marked bytecode instruction.
 

Method Detail

cover

public void cover(java.lang.String classSignature,
                  short methodIndex,
                  short markIndex)
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.
methodIndex - index for a method within the class. The meta-data store will know how to translate the index to a method signature.
markIndex - the index of the bytecode instruction mark for this particular channel.


Copyright © 2001-2003 by The GroboUtils Project