Uses of Interface
com.topologi.diffx.event.TextEvent

Packages that use TextEvent
com.topologi.diffx.event.impl The events implementations used by the Diff-X. 
com.topologi.diffx.load.text The set of classes to load characters / text data specifically. 
 

Uses of TextEvent in com.topologi.diffx.event.impl
 

Classes in com.topologi.diffx.event.impl that implement TextEvent
 class CharactersEvent
          An event corresponds to the "characters" SAX event.
 class CharactersEventBase
          A base class for all the characters events "characters" SAX event.
 class IgnorableSpaceEvent
          A particular type of event reserved for ignored white spaces.
 class LineEvent
          An interface for any data that comes from a text node.
 class SpaceEvent
          A particular type of event reserved for white spaces.
 class WordEvent
          A text event representing a word.
 

Uses of TextEvent in com.topologi.diffx.load.text
 

Methods in com.topologi.diffx.load.text that return types with arguments of type TextEvent
 List<TextEvent> TokenizerByWord.tokenize(CharSequence seq)
          Returns the list of TextEvent corresponding to the specified character sequence.
 List<TextEvent> TokenizerByText.tokenize(CharSequence seq)
          Returns the list of TextEvent corresponding to the specified character sequence.
 List<TextEvent> TokenizerByChar.tokenize(CharSequence seq)
          Returns the list of TextEvent corresponding to the specified character sequence.
 List<TextEvent> TextTokenizer.tokenize(CharSequence seq)
          Returns the list of TextEvent corresponding to the specified character sequence.