org.jacoco.core.data
Interface IExecutionDataVisitor

All Known Implementing Classes:
ExecutionDataStore, ExecutionDataWriter

public interface IExecutionDataVisitor

Interface for data output of collected execution data. This interface is meant to be implemented by parties that want to retrieve data from the coverage runtime.

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

Method Summary
 void visitClassExecution(long id, String name, boolean[] data)
          Provides execution data for the class with the given id.
 

Method Detail

visitClassExecution

void visitClassExecution(long id,
                         String name,
                         boolean[] data)
Provides execution data for the class with the given id. Each slot in the array represents a probe in the instrumented class. A value of true indicates that a probe has been executed.

Parameters:
id - id of the class
name - VM name of the class
data - coverage data for the class