import SimKit.*;
class SKTest extends Simulation {
public static void main (String[] argv) {
Arguments args = new Arguments(argv);
args.add("Debug");
System.out.println("SKTest main, args = \n" + args);
new SKTest(args).run();
}
public SKTest(Arguments args) {
super(args);
System.out.println("SKTest constructor, args = \n" + args);
}
public void initialize () {
setEndTime(50);
System.out.println("SKTest initialize(), currTime = " + currTime());
}
public void terminate () {
System.out.println("SKTest terminate(), currTime = " + currTime());
}
} // end SKTest
Previous slide | Next slide | Back to first slide | View graphic version |