Package org.jacoco.report
Interface IMultiReportOutput
-
- All Known Implementing Classes:
FileMultiReportOutput,ZipMultiReportOutput
public interface IMultiReportOutputInterface to emit multiple binary files.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Closes the underlying resource container.java.io.OutputStreamcreateFile(java.lang.String path)Creates a file at the given local path.
-
-
-
Method Detail
-
createFile
java.io.OutputStream createFile(java.lang.String path) throws java.io.IOExceptionCreates a file at the given local path. The returnedOutputStreamhas to be closed before the next document is created.- Parameters:
path- local path to the new document- Returns:
- output for the content
- Throws:
java.io.IOException- if the creation fails
-
close
void close() throws java.io.IOExceptionCloses the underlying resource container.- Throws:
java.io.IOException- if closing fails
-
-