Event Dispatcher
v0.1.6-beta.1
Project that offers a small library that allows to subscribe and fire events.
ValueChangeListener.java
Go to the documentation of this file.
1
package
com.fermod.event;
2
10
@FunctionalInterface
11
public
interface
ValueChangeListener
<T> {
12
19
void
onValueChanged
(T oldValue, T value);
20
21
}
com.fermod.event.ValueChangeListener.onValueChanged
void onValueChanged(T oldValue, T value)
Function called when the listened to variable value change.
com.fermod.event.ValueChangeListener
The listener interface for receiving value change events.
Definition:
ValueChangeListener.java:11
main
java
com
fermod
event
ValueChangeListener.java