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 }
void onValueChanged(T oldValue, T value)
Function called when the listened to variable value change.
The listener interface for receiving value change events.