Package | Description |
---|---|
org.jacoco.core.data |
Representation and persistence of execution data and session information.
|
org.jacoco.core.runtime |
Runtime control and execution data collection.
|
org.jacoco.report |
Common interfaces and utilities for report generation.
|
org.jacoco.report.internal.html.page |
Modifier and Type | Method | Description |
---|---|---|
ExecutionData |
ExecutionDataStore.get(long id) |
Returns the
ExecutionData entry with the given id if it exists in
this store. |
ExecutionData |
ExecutionDataStore.get(java.lang.Long id,
java.lang.String name,
int probecount) |
Returns the coverage data for the class with the given identifier.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.Collection<ExecutionData> |
ExecutionDataStore.getContents() |
Returns a collection that represents current contents of the store.
|
Modifier and Type | Method | Description |
---|---|---|
void |
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 given
ExecutionData object into the store. |
void |
ExecutionDataStore.subtract(ExecutionData data) |
Subtracts the probes in the given
ExecutionData 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.
|
Modifier and Type | Method | Description |
---|---|---|
ExecutionData |
RuntimeData.getExecutionData(java.lang.Long id,
java.lang.String name,
int probecount) |
Returns the coverage data for the class with the given identifier.
|
Modifier and Type | Method | Description |
---|---|---|
void |
IReportVisitor.visitInfo(java.util.List<SessionInfo> sessionInfos,
java.util.Collection<ExecutionData> executionData) |
Initializes the report with global information.
|
void |
MultiReportVisitor.visitInfo(java.util.List<SessionInfo> sessionInfos,
java.util.Collection<ExecutionData> executionData) |
Constructor | Description |
---|---|
SessionsPage(java.util.List<SessionInfo> sessionInfos,
java.util.Collection<ExecutionData> executionData,
ElementIndex index,
ReportPage parent,
ReportOutputFolder folder,
IHTMLReportContext context) |
Creates a new page page to display session information.
|
Copyright © 2018. All rights reserved.