Interface IMemoryCellObserver
- All Known Implementing Classes:
UpdatableMemoryCellObserverAdapter
public interface IMemoryCellObserver
Observes value changes of a
memory cell and notifies listeners about new values.
Value updates are listenable to through the value property.- Author:
- Erik Zemčík
- See Also:
-
Property Summary
PropertiesTypePropertyDescriptionjavafx.beans.value.ObservableObjectValue<Integer>Property indicating last value of the observedmemory cell. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the address of the targetmemory cellwithin the executionmemory.javafx.beans.value.ObservableObjectValue<Integer>Property indicating last value of the observedmemory cell.
-
Property Details
-
value
javafx.beans.value.ObservableObjectValue<Integer> valuePropertyProperty indicating last value of the observedmemory cell. This property will emit the observed value once the observer observes a change. This property may holdnullwhen the observedmemory cellholds no value.
-
-
Method Details
-
getAddress
int getAddress()Returns the address of the targetmemory cellwithin the executionmemory.- Returns:
- address of the
memory cell
-
valueProperty
javafx.beans.value.ObservableObjectValue<Integer> valueProperty()Property indicating last value of the observedmemory cell. This property will emit the observed value once the observer observes a change. This property may holdnullwhen the observedmemory cellholds no value.
-