(no commit message)
[utils] / support / general / src / test / java / org / wamblee / test / EventTracker.java
index 8cbd4ace333a0f403fdffbfbb74fa7f044247b67..38b24666bf7a760f1b9c1e572b60f7e5269e83d5 100644 (file)
@@ -25,8 +25,8 @@ import java.util.logging.Logger;
 /**
  * Tracks the occurence of certain events in a test environment. Threads in a
  * test environment tell the event tracker of the occurrence of certain events
- * using {@link #eventOccurred(Event)}. Test code inspects the events sent by a
- * thread using {@link #isEventSent(Thread, Event)}.
+ * using {@link #eventOccurred(Object)}. Test code inspects the events sent by a
+ * thread using {@link #isEventSent(Thread, Object)}.
  * 
  * A record is kept of every event which is sent. Therefore, the occurrence of a
  * new event does not erase a previously sent event.