1 | |
package org.jbehave.core.reporters; |
2 | |
|
3 | |
import java.io.File; |
4 | |
import java.util.List; |
5 | |
import java.util.Properties; |
6 | |
|
7 | |
import org.jbehave.core.model.StoryMaps; |
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
public interface ViewGenerator { |
14 | |
|
15 | |
void generateMapsView(File outputDirectory, StoryMaps storyMaps, |
16 | |
Properties viewResources); |
17 | |
|
18 | |
void generateReportsView(File outputDirectory, List<String> formats, |
19 | |
Properties viewResources); |
20 | |
|
21 | |
ReportsCount getReportsCount(); |
22 | |
|
23 | |
Properties defaultViewProperties(); |
24 | |
|
25 | |
} |