updates some comments

This commit is contained in:
hneemann 2020-11-20 21:02:36 +01:00
parent 85b421dd80
commit 856db7368b

View File

@ -34,10 +34,13 @@ public class VirtualSignal {
} }
/** /**
* The observable name of the expression * The value of the expression.
* This method does not return a real observable value.
* It is just a placeholder for a value.
* Only the method {@link ObservableValue#getValue()} is working!
* *
* @param context the context to use * @param context the context to use
* @return the observable value * @return the created observable value instance
*/ */
public ObservableValue getValue(Context context) { public ObservableValue getValue(Context context) {
return new ObservableValue(sigName, 64) { return new ObservableValue(sigName, 64) {