]> git.somenet.org - pub/jan/lsdc.git/blob - src/at/ac/tuwien/lsdc/JobGenerator.java
added ant, removed mvn, added libs, reanamed classes & implemented a bit more
[pub/jan/lsdc.git] / src / at / ac / tuwien / lsdc / JobGenerator.java
1 package at.ac.tuwien.lsdc;
2
3 import org.slf4j.Logger;
4 import org.slf4j.LoggerFactory;
5
6 public class JobGenerator {
7         private static final Logger log = LoggerFactory.getLogger(JobGenerator.class);
8         private static final String USAGE = "JobGenerator needs exactly 3 parameters: Szenario, count, targetFile";
9
10         public static void main(String[] args) throws Exception {
11                 if (args.length != 3) {
12                         throw new IllegalArgumentException(USAGE);
13                 }
14                 log.info("Generate CSV with...");
15         }
16 }