Uses of Class
org.gjt.sp.jedit.syntax.Token

Packages that use Token
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.syntax The jEdit syntax highlighting engine. 
 

Uses of Token in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit that return Token
 Token Buffer.TokenList.getFirstToken()
          Deprecated.  
static Token TextUtilities.getTokenAtOffset(Token tokens, int offset)
          Returns the token that contains the specified offset.
 

Methods in org.gjt.sp.jedit with parameters of type Token
static Token TextUtilities.getTokenAtOffset(Token tokens, int offset)
          Returns the token that contains the specified offset.
 

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

Subclasses of Token in org.gjt.sp.jedit.syntax
 class Chunk
          A syntax token with extra information required for painting it on screen.
 

Fields in org.gjt.sp.jedit.syntax declared as Token
protected  Token DefaultTokenHandler.firstToken
           
protected  Token DefaultTokenHandler.lastToken
           
 Token Token.next
          The next token in the linked list.
 

Methods in org.gjt.sp.jedit.syntax that return Token
protected  Token DefaultTokenHandler.createToken(byte id, int offset, int length, TokenMarker.LineContext context)
           
 Token DefaultTokenHandler.getTokens()
          Returns the first syntax token.
 

Methods in org.gjt.sp.jedit.syntax with parameters of type Token
protected  void DefaultTokenHandler.addToken(Token token, TokenMarker.LineContext context)