source: xssim/trunk/src/test/jarek/CreateWorkload.java @ 104

Revision 104, 322 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.jarek;
2
3import simulator.workload.generator.WorkloadGenerator;
4
5public class CreateWorkload {
6
7        public static void main(String args[]){
8                CreateWorkload cw = new CreateWorkload();
9                cw.run();
10        }
11       
12        public void run(){
13                String args[] = {"properties/generator.properties"};
14                WorkloadGenerator.main(args);
15        }
16}
Note: See TracBrowser for help on using the repository browser.