Esempio n. 1
0
 public int getPathFinderStatus(Tracker tracker) {
   if (this.trackerCounter == tracker.getCounter() && this.trackerID == tracker.getID()) {
     return trackerStatus;
   } else {
     return UNPROCESSED;
   }
 }
Esempio n. 2
0
 public void setPathFinderStatus(int trackerStatus, Tracker tracker) {
   this.trackerStatus = trackerStatus;
   this.trackerCounter = tracker.getCounter();
   this.trackerID = tracker.getID();
 }