From 856db7368bce4a86f48ecd036a5f95112a86f25f Mon Sep 17 00:00:00 2001 From: hneemann Date: Fri, 20 Nov 2020 21:02:36 +0100 Subject: [PATCH] updates some comments --- .../de/neemann/digital/testing/parser/VirtualSignal.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/de/neemann/digital/testing/parser/VirtualSignal.java b/src/main/java/de/neemann/digital/testing/parser/VirtualSignal.java index bd0578567..5d01fcd81 100644 --- a/src/main/java/de/neemann/digital/testing/parser/VirtualSignal.java +++ b/src/main/java/de/neemann/digital/testing/parser/VirtualSignal.java @@ -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 - * @return the observable value + * @return the created observable value instance */ public ObservableValue getValue(Context context) { return new ObservableValue(sigName, 64) {