Uses of Class
org.jacoco.core.data.ExecutionData
Packages that use ExecutionData
Package
Description
Representation and persistence of execution data and session information.
Runtime control and execution data collection.
Common interfaces and utilities for report generation.
-
Uses of ExecutionData in org.jacoco.core.data
Fields in org.jacoco.core.data with type parameters of type ExecutionDataModifier and TypeFieldDescriptionprivate final Map
<Long, ExecutionData> ExecutionDataStore.entries
Methods in org.jacoco.core.data that return ExecutionDataModifier and TypeMethodDescriptionExecutionDataStore.get
(long id) Returns theExecutionData
entry with the given id if it exists in this store.Returns the coverage data for the class with the given identifier.Methods in org.jacoco.core.data that return types with arguments of type ExecutionDataModifier and TypeMethodDescriptionExecutionDataStore.getContents()
Returns a collection that represents current contents of the store.Methods in org.jacoco.core.data with parameters of type ExecutionDataModifier and TypeMethodDescriptionvoid
ExecutionData.merge
(ExecutionData other) Merges the given execution data into the probe data of this object.void
ExecutionData.merge
(ExecutionData other, boolean flag) Merges the given execution data into the probe data of this object.void
ExecutionDataStore.put
(ExecutionData data) Adds the givenExecutionData
object into the store.void
ExecutionDataStore.subtract
(ExecutionData data) Subtracts the probes in the givenExecutionData
object from the store.void
ExecutionDataStore.visitClassExecution
(ExecutionData data) void
ExecutionDataWriter.visitClassExecution
(ExecutionData data) void
IExecutionDataVisitor.visitClassExecution
(ExecutionData data) Provides execution data for a class. -
Uses of ExecutionData in org.jacoco.core.runtime
Methods in org.jacoco.core.runtime that return ExecutionDataModifier and TypeMethodDescriptionRuntimeData.getExecutionData
(Long id, String name, int probecount) Returns the coverage data for the class with the given identifier. -
Uses of ExecutionData in org.jacoco.report
Method parameters in org.jacoco.report with type arguments of type ExecutionDataModifier and TypeMethodDescriptionvoid
IReportVisitor.visitInfo
(List<SessionInfo> sessionInfos, Collection<ExecutionData> executionData) Initializes the report with global information.void
MultiReportVisitor.visitInfo
(List<SessionInfo> sessionInfos, Collection<ExecutionData> executionData) -
Uses of ExecutionData in org.jacoco.report.internal.html.page
Fields in org.jacoco.report.internal.html.page with type parameters of type ExecutionDataConstructor parameters in org.jacoco.report.internal.html.page with type arguments of type ExecutionDataModifierConstructorDescriptionSessionsPage
(List<SessionInfo> sessionInfos, Collection<ExecutionData> executionData, ElementIndex index, ReportPage parent, ReportOutputFolder folder, IHTMLReportContext context) Creates a new page page to display session information.