Jim told me to change the int hashCodeSpecific() function to return id.hashCode(...
[IRC.git] / Robust / CoreProf / Event.java
1 public class Event {
2   public long    timeStamp;
3   public int     eventID;  
4   public Counter counter;  
5
6   public Event( long    timeStamp, 
7                 int     eventId,
8                 Counter counter ) {
9
10     this.timeStamp = timeStamp;
11     this.eventID   = eventID;  
12     this.counter   = counter;  
13   }
14 }