org.jacoco.core.instr
Class GeneratorConstants

java.lang.Object
  extended by org.jacoco.core.instr.GeneratorConstants

public final class GeneratorConstants
extends Object

Constants for generated instrumentation code.

Version:
$Revision: $
Author:
Marc R. Hoffmann

Field Summary
static Type BLOCK_ARR
          Type for array of primitive boolean values.
static int DATAFIELD_ACC
          Access modifiers of the field that stores coverage information of a class.
static String DATAFIELD_NAME
          Name of the field that stores coverage information of a class.
static Type DATAFIELD_TYPE
          The type of the field that stores coverage information of a class is a 2-dimensional array of primitive boolean values.
static Method INIT_METHOD
          Initialization method that is added into every instrumented class.
static int INIT_METHOD_ACC
          Access modifiers of the initialization method.
 
Constructor Summary
GeneratorConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BLOCK_ARR

public static final Type BLOCK_ARR
Type for array of primitive boolean values. This type is used to store covered blocks of a single method.


DATAFIELD_NAME

public static final String DATAFIELD_NAME
Name of the field that stores coverage information of a class.

See Also:
Constant Field Values

DATAFIELD_ACC

public static final int DATAFIELD_ACC
Access modifiers of the field that stores coverage information of a class.

See Also:
Constant Field Values

DATAFIELD_TYPE

public static final Type DATAFIELD_TYPE
The type of the field that stores coverage information of a class is a 2-dimensional array of primitive boolean values.


INIT_METHOD

public static final Method INIT_METHOD
Initialization method that is added into every instrumented class.


INIT_METHOD_ACC

public static final int INIT_METHOD_ACC
Access modifiers of the initialization method.

See Also:
Constant Field Values
Constructor Detail

GeneratorConstants

public GeneratorConstants()