T - type of data being notified back to the caller.public interface Listener<T>
Listenable.| Modifier and Type | Method and Description |
|---|---|
void |
notifyChange(T data)
a notification call that occurs when something changed.
|
void notifyChange(T data)
SwingUtilities.invokeLater(Runnable). We recommend to avoid
synchronize as this will can block indefinitely (see notice 1) which
might lead to deadlocks.data - additional data, typically the new value associated with the
event