| java.lang.Object net.sourceforge.groboutils.codecoverage.v2.module.DefaultAnalysisMetaData
DefaultAnalysisMetaData | public class DefaultAnalysisMetaData implements IAnalysisMetaData(Code) | | Contains data necessary for storing the meta-data associated with a specific
marked bytecode instruction.
There is an optional "weight" value which can associate a number from
-128 to 127 for this particular instruction. This will create a weighted
coverage value to indicate on each summary level how important it is
for this particular bytecode to be executed. If the analysis module doesn't
use weights, then this should return the same value for all instructions.
author: Matt Albrecht groboclown@users.sourceforge.net version: $Date: 2003/02/10 22:51:28 $ since: December 15, 2002 |
Method Summary | |
public String | getCoveredFormattedText() Returns the formatted, localized text for a report on this instruction
if it was covered during the runtime execution. | public byte | getInstructionWeight() Returns any value in the range of a byte that assigns an
importance "weight" to this instruction. | public String | getNotCoveredFormattedText() Returns the formatted, localized text for a report on this instruction
if it was not covered during the runtime execution. |
getCoveredFormattedText | public String getCoveredFormattedText()(Code) | | Returns the formatted, localized text for a report on this instruction
if it was covered during the runtime execution.
formatted, localized, human-readable report |
getInstructionWeight | public byte getInstructionWeight()(Code) | | Returns any value in the range of a byte that assigns an
importance "weight" to this instruction. If weights are not used
by the analysis module, then this needs to return the same value
for every instruction.
an instruction weight value. |
getNotCoveredFormattedText | public String getNotCoveredFormattedText()(Code) | | Returns the formatted, localized text for a report on this instruction
if it was not covered during the runtime execution.
formatted, localized, human-readable report |
|
|