• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*******************************************************************************
2  * Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors
3  * This program and the accompanying materials are made available under
4  * the terms of the Eclipse Public License 2.0 which is available at
5  * http://www.eclipse.org/legal/epl-2.0
6  *
7  * SPDX-License-Identifier: EPL-2.0
8  *
9  * Contributors:
10  *    Marc R. Hoffmann - initial API and implementation
11  *
12  *******************************************************************************/
13 package org.jacoco.core.data;
14 
15 /**
16  * Interface for data output of collected execution data. This interface is
17  * meant to be implemented by parties that want to retrieve data from the
18  * coverage runtime.
19  */
20 public interface IExecutionDataVisitor {
21 
22 	/**
23 	 * Provides execution data for a class.
24 	 *
25 	 * @param data
26 	 *            execution data for a class
27 	 */
28 	// BEGIN android-change
visitClassExecution(IExecutionData data)29 	void visitClassExecution(IExecutionData data);
30 	// END android-change
31 
32 }
33