Uses of Class
inpro.incremental.deltifier.SmoothingDeltifier.SmoothingCounter

Packages that use SmoothingDeltifier.SmoothingCounter
demo.inpro.system.greifarm This package contains all classes that are necessary for the Greifarm domain. 
inpro.incremental.deltifier Package for deltifiers, The pluggable modules that convert Sphinx' Result objects to objects of the IU world. 
 

Uses of SmoothingDeltifier.SmoothingCounter in demo.inpro.system.greifarm
 

Method parameters in demo.inpro.system.greifarm with type arguments of type SmoothingDeltifier.SmoothingCounter
private  java.util.List<EditMessage<WordIU>> WordAdaptiveSmoothingDeltifier.determineEditsToBeApplied(java.util.ListIterator<SmoothingDeltifier.SmoothingCounter> smoothIter)
          determine the edits from the smoothingQueue that should be applied if a counter has run out
 

Uses of SmoothingDeltifier.SmoothingCounter in inpro.incremental.deltifier
 

Fields in inpro.incremental.deltifier with type parameters of type SmoothingDeltifier.SmoothingCounter
protected  java.util.List<SmoothingDeltifier.SmoothingCounter> SmoothingDeltifier.smoothingQueue
           
 

Method parameters in inpro.incremental.deltifier with type arguments of type SmoothingDeltifier.SmoothingCounter
private  void SmoothingDeltifier.addNewWordsToSmoothingQueue(EditMessage<WordIU> edit, java.util.Iterator<EditMessage<WordIU>> editsIter, java.util.List<SmoothingDeltifier.SmoothingCounter> smoothingQueue)
           
private  EditMessage<WordIU> SmoothingDeltifier.compareToSmoothingQueueForMatchingWords(java.util.Iterator<EditMessage<WordIU>> editsIter, java.util.Iterator<SmoothingDeltifier.SmoothingCounter> smoothIter)
          compares incoming edits and smoothing list, decreases counters for matching smoothings and returns as soon as a non-matching word is found; this word is returned (as the underlying iterator can't go back :-(
private  void SmoothingDeltifier.removeNonMatchingWordsFromSmoothingQueue(java.util.Iterator<SmoothingDeltifier.SmoothingCounter> smoothIter)