Skip to content
This repository was archived by the owner on Feb 19, 2019. It is now read-only.

Commit 3faf3b8

Browse files
committed
Update ValueChangeListener javadocs
1 parent 87b6de5 commit 3faf3b8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/clientapi/value/ValueChangeListener.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,13 @@
2323
@FunctionalInterface
2424
public interface ValueChangeListener<T> {
2525

26+
/**
27+
* Called when the value, identified by the first parameter,
28+
* has a change in it's inner-value.
29+
*
30+
* @param value The value that has changed
31+
* @param oldValue The old inner-value
32+
* @param newValue The new inner-value
33+
*/
2634
void onValueChanged(Value<T> value, T oldValue, T newValue);
2735
}

0 commit comments

Comments
 (0)