blob: c249ea96cf019c6d83a1c1483a3cb344b3bb696d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Marc R. Hoffmann - initial API and implementation
*
*******************************************************************************/
package org.jacoco.report;
import java.io.IOException;
import java.io.OutputStream;
/**
* Interface to emit multiple binary files.
*/
public interface IMultiReportOutput {
/**
* Creates a file at the given local path. The returned {@link OutputStream}
* has to be closed before the next document is created.
*
* @param path
* local path to the new document
* @return output for the content
* @throws IOException
* if the creation fails
*/
public OutputStream createFile(String path) throws IOException;
/**
* Closes the underlying resource container.
*
* @throws IOException
* if closing fails
*/
public void close() throws IOException;
}