Ejemplo n.º 1
0
 public void initialize() {
   phase = "passive";
   sigma = INFINITY;
   job = new entity("job");
   sw = false;
   input = new String("in");
   super.initialize();
 }
Ejemplo n.º 2
0
  public void showState() {
    super.showState();

    System.out.println("modeltN: " + tN);

    System.out.println("gMail: " + gMail);
    System.out.println("pMail: " + pMail);
  }
Ejemplo n.º 3
0
  public void initialize() {
    tN = INFINITY;
    gMail = new message();
    pMail = new message();
    tMail = new message();

    holdIn("nextTN", 0);
    super.initialize();
  }
Ejemplo n.º 4
0
 public void showState() {
   super.showState();
   System.out.println("job: " + job.getName());
   System.out.println("input: " + input);
   System.out.println("sw: " + sw);
 }