| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| PrintStreamFactory |
|
| 1.0;1 |
| 1 | package org.jbehave.core.reporters; | |
| 2 | ||
| 3 | import java.io.PrintStream; | |
| 4 | ||
| 5 | /** | |
| 6 | * Creates {@link PrintStream} instances. | |
| 7 | * </p> | |
| 8 | * Implementations will be responsible for providing all the parameters | |
| 9 | * required by the factory. E.g. the {@link FilePrintStreamFactory} provides | |
| 10 | * the file path and configuration for the creation. | |
| 11 | */ | |
| 12 | public interface PrintStreamFactory { | |
| 13 | ||
| 14 | PrintStream createPrintStream(); | |
| 15 | ||
| 16 | } |