inpro.incremental.deltifier
Interface ASRResultKeeper

All Known Implementing Classes:
ASRWordDeltifier, FixedLagDeltifier, NonIncrementalDeltifier, SmoothingDeltifier, WordAdaptiveSmoothingDeltifier

public interface ASRResultKeeper

allows to query the the current state of ASR input


Method Summary
 int getCurrentFrame()
          return the frame of the Result that the current state is based on
 double getCurrentTime()
           
 java.util.List<EditMessage<WordIU>> getWordEdits()
          return a list of currently valid edits between the last update of internal state and the one preceding that state.
 java.util.List<WordIU> getWordIUs()
          return a list of currently valid WordIUs
 

Method Detail

getWordEdits

java.util.List<EditMessage<WordIU>> getWordEdits()
return a list of currently valid edits between the last update of internal state and the one preceding that state.


getWordIUs

java.util.List<WordIU> getWordIUs()
return a list of currently valid WordIUs


getCurrentFrame

int getCurrentFrame()
return the frame of the Result that the current state is based on


getCurrentTime

double getCurrentTime()