コード例 #1
0
ファイル: Switch.java プロジェクト: shareef422/CSE561
 public void initialize() {
   phase = "passive";
   sigma = INFINITY;
   job = new entity("job");
   sw = false;
   input = new String("in");
   super.initialize();
 }
コード例 #2
0
ファイル: coordinator.java プロジェクト: shareef422/CSE561
  public void showState() {
    super.showState();

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

    System.out.println("gMail: " + gMail);
    System.out.println("pMail: " + pMail);
  }
コード例 #3
0
ファイル: coordinator.java プロジェクト: shareef422/CSE561
  public void initialize() {
    tN = INFINITY;
    gMail = new message();
    pMail = new message();
    tMail = new message();

    holdIn("nextTN", 0);
    super.initialize();
  }
コード例 #4
0
ファイル: Switch.java プロジェクト: shareef422/CSE561
 public void showState() {
   super.showState();
   System.out.println("job: " + job.getName());
   System.out.println("input: " + input);
   System.out.println("sw: " + sw);
 }