Package uk.ac.qmul.eecs.depic.patterns
Interface SequenceListener
-
- All Known Implementing Classes:
- HapticTrigger, SequenceGraph
public interface SequenceListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description <T extends SequenceEvent>
voidsequenceUpdated(T t)
This method has to be implemented by classes that provide a continuous representation of the sequence.
-
-
-
Method Detail
-
sequenceUpdated
<T extends SequenceEvent> void sequenceUpdated(T t)
This method has to be implemented by classes that provide a continuous representation of the sequence. The method a callback that is called as soon as one of the values of the the sequence is added, deleted or modified. Implementors can thus promptly update their representation to reflect the changes in the sequence.- Parameters:
t
- an event holding information about the sequence that has been modfied.
-
-