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 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 int INITMETHOD_ACC
          Access modifiers of the initialization method.
static String INITMETHOD_DESC
          Descriptor of the initialization method.
static String INITMETHOD_NAME
          Name of the initialization method.
static Type PROBEDATA_TYPE
          Type for array of primitive boolean values.
 
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

PROBEDATA_TYPE

public static final Type PROBEDATA_TYPE
Type for array of primitive boolean values. This type is used to store executed probes of a class.


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

INITMETHOD_NAME

public static final String INITMETHOD_NAME
Name of the initialization method.

See Also:
Constant Field Values

INITMETHOD_DESC

public static final String INITMETHOD_DESC
Descriptor of the initialization method.

See Also:
Constant Field Values

INITMETHOD_ACC

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

See Also:
Constant Field Values
Constructor Detail

GeneratorConstants

public GeneratorConstants()