All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teamscale.report.jacoco.dump.Dump Maven / Gradle / Ivy

There is a newer version: 34.2.0
Show newest version
/*-------------------------------------------------------------------------+
|                                                                          |
| Copyright (c) 2009-2018 CQSE GmbH                                        |
|                                                                          |
+-------------------------------------------------------------------------*/
package com.teamscale.report.jacoco.dump;

import org.jacoco.core.data.ExecutionDataStore;
import org.jacoco.core.data.SessionInfo;

/** All data received in one dump. */
public class Dump {

	/** The session info. */
	public final SessionInfo info;

	/** The execution data store. */
	public final ExecutionDataStore store;

	/** Constructor. */
	public Dump(SessionInfo info, ExecutionDataStore store) {
		this.info = info;
		this.store = store;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy