1
0

explanation after question on presentation

This commit is contained in:
Rémi Heredero 2023-06-16 16:17:02 +02:00
parent 4b531e51e1
commit 2ccc16f484

View File

@ -4,7 +4,7 @@ import java.util.Vector;
public interface DataPointListener {
// Vector of listeners
// Vector of listeners already static and final because it's in an interface
Vector<DataPointListener> listeners = new Vector<>();
void onNewValue(DataPoint dp);