Interface | Description |
---|---|
ListObserver |
Interface for objects that monitor lists' changes.
|
Observable |
Interface for objects that need to be observed (monitored).
|
Class | Description |
---|---|
ListEvent |
Abstract class for list related events.
|
MyArrayList<E> |
An observable subclass of
ArrayList , which
notifies other objects (ListObserver) when it is modified. |
Test | |
Test.DurationObserver |
ListObserver implementation for keeping track of all events that have a
duration bigger than a threshold.
|
Test.PrintObserver |
ListObserver implementation for printing to stdout all information about
the events, when it's notified of their occurrence.
|
Enum | Description |
---|---|
EventType |