/******************************************************************************* * Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors * This program and the accompanying materials are made available under * the terms of the Eclipse Public License 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0 * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * Marc R. Hoffmann - initial API and implementation * *******************************************************************************/ package org.jacoco.core.analysis; /** * Coverage data of a single source file. The name of this node is the local * name of the source file. */ public interface ISourceFileCoverage extends ISourceNode { /** * Returns the VM name of the package the source file belongs to. * * @return package name */ String getPackageName(); }