Uses of Interface
org.gjt.sp.jedit.syntax.TokenHandler

Packages that use TokenHandler
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.buffer Buffer event listeners, and classes used to implement jEdit's document model. 
org.gjt.sp.jedit.syntax The jEdit syntax highlighting engine. 
 

Uses of TokenHandler in org.gjt.sp.jedit
 

Classes in org.gjt.sp.jedit that implement TokenHandler
static class Buffer.TokenList
          Deprecated. Use org.gjt.sp.jedit.syntax.DefaultTokenHandler instead
 

Uses of TokenHandler in org.gjt.sp.jedit.buffer
 

Methods in org.gjt.sp.jedit.buffer with parameters of type TokenHandler
 void JEditBuffer.markTokens(int lineIndex, TokenHandler tokenHandler)
          Returns the syntax tokens for the specified line.
 

Uses of TokenHandler in org.gjt.sp.jedit.syntax
 

Classes in org.gjt.sp.jedit.syntax that implement TokenHandler
 class DefaultTokenHandler
          Builds a linked list of tokens without any additional processing.
 class DisplayTokenHandler
          Creates Chunk objects that can be painted on screen.
 class DummyTokenHandler
          A dummy token handler that discards tokens.
 

Methods in org.gjt.sp.jedit.syntax with parameters of type TokenHandler
 TokenMarker.LineContext TokenMarker.markTokens(TokenMarker.LineContext prevContext, TokenHandler tokenHandler, javax.swing.text.Segment line)
          Do not call this method directly; call Buffer.markTokens() instead.