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