Uses of Class
org.jacoco.core.data.ExecutionData
-
Packages that use ExecutionData 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 -
-
Uses of ExecutionData in org.jacoco.core.data
Fields in org.jacoco.core.data with type parameters of type ExecutionData Modifier and Type Field Description private java.util.Map<java.lang.Long,ExecutionData>ExecutionDataStore. entriesMethods in org.jacoco.core.data that return ExecutionData Modifier and Type Method Description ExecutionDataExecutionDataStore. get(long id)Returns theExecutionDataentry with the given id if it exists in this store.ExecutionDataExecutionDataStore. get(java.lang.Long id, java.lang.String name, int probecount)Returns the coverage data for the class with the given identifier.Methods in org.jacoco.core.data that return types with arguments of type ExecutionData Modifier and Type Method Description java.util.Collection<ExecutionData>ExecutionDataStore. getContents()Returns a collection that represents current contents of the store.Methods in org.jacoco.core.data with parameters of type ExecutionData Modifier and Type Method Description voidExecutionData. merge(ExecutionData other)Merges the given execution data into the probe data of this object.voidExecutionData. merge(ExecutionData other, boolean flag)Merges the given execution data into the probe data of this object.voidExecutionDataStore. put(ExecutionData data)Adds the givenExecutionDataobject into the store.voidExecutionDataStore. subtract(ExecutionData data)Subtracts the probes in the givenExecutionDataobject from the store.voidExecutionDataStore. visitClassExecution(ExecutionData data)voidExecutionDataWriter. visitClassExecution(ExecutionData data)voidIExecutionDataVisitor. 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 ExecutionData Modifier and Type Method Description ExecutionDataRuntimeData. getExecutionData(java.lang.Long id, java.lang.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 ExecutionData Modifier and Type Method Description voidIReportVisitor. visitInfo(java.util.List<SessionInfo> sessionInfos, java.util.Collection<ExecutionData> executionData)Initializes the report with global information.voidMultiReportVisitor. visitInfo(java.util.List<SessionInfo> sessionInfos, java.util.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 ExecutionData Modifier and Type Field Description private java.util.List<ExecutionData>SessionsPage. executionDataConstructor parameters in org.jacoco.report.internal.html.page with type arguments of type 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.
-