Package org.jacoco.report
Interface IMultiReportOutput
-
- All Known Implementing Classes:
FileMultiReportOutput
,ZipMultiReportOutput
public interface IMultiReportOutput
Interface to emit multiple binary files.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Closes the underlying resource container.java.io.OutputStream
createFile(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.IOException
Creates a file at the given local path. The returnedOutputStream
has 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.IOException
Closes the underlying resource container.- Throws:
java.io.IOException
- if closing fails
-
-