Revision 477,
713 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package simulator.workload.generator; |
---|
2 | |
---|
3 | import java.io.FileNotFoundException; |
---|
4 | import java.io.IOException; |
---|
5 | |
---|
6 | /** |
---|
7 | * @author Marcin Krystek |
---|
8 | * |
---|
9 | */ |
---|
10 | public interface JobGenerator { |
---|
11 | |
---|
12 | public void generateWorkload(String workloadConfigFileName, String outputDirectoryName, |
---|
13 | boolean overwriteExistingFiles, String outputWorkloadFileName) throws FileNotFoundException, IOException; |
---|
14 | |
---|
15 | public void generateXMLSupplement(String configurationFileName, String swfFileName, |
---|
16 | String outputDirectoryName, boolean ignoreNonEmptyOutputDir) throws FileNotFoundException, IOException; |
---|
17 | |
---|
18 | public void performPostprocessing(String resDescriptionFileName, String outputDirectoryName, String outputWorkloadFileName); |
---|
19 | |
---|
20 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.