| java.lang.Object org.gjt.sp.jedit.syntax.DefaultTokenHandler
All known Subclasses: org.gjt.sp.jedit.syntax.DisplayTokenHandler,
DefaultTokenHandler | public class DefaultTokenHandler implements TokenHandler(Code) | | Builds a linked list of tokens without any additional processing.
author: Slava Pestov version: $Id: DefaultTokenHandler.java 4902 2003-10-26 19:43:58Z spestov $ since: jEdit 4.1pre1 |
firstTokenlastToken | protected Token firstTokenlastToken(Code) | | |
getLineContext | public TokenMarker.LineContext getLineContext()(Code) | | The token handler can compare this object with the object
previously given for this line to see if the token type at the end
of the line has changed (meaning subsequent lines might need to be
retokenized).
since: jEdit 4.2pre6 |
getTokens | public Token getTokens()(Code) | | Returns the first syntax token.
since: jEdit 4.1pre1 |
handleToken | public void handleToken(Segment seg, byte id, int offset, int length, TokenMarker.LineContext context)(Code) | | Called by the token marker when a syntax token has been parsed.
Parameters: seg - The segment containing the text Parameters: id - The token type (one of the constants in theToken class). Parameters: offset - The start offset of the token Parameters: length - The number of characters in the token Parameters: context - The line context since: jEdit 4.2pre3 |
init | public void init()(Code) | | Clears the list of tokens.
|
setLineContext | public void setLineContext(TokenMarker.LineContext lineContext)(Code) | | The token handler can compare this object with the object
previously given for this line to see if the token type at the end
of the line has changed (meaning subsequent lines might need to be
retokenized).
since: jEdit 4.2pre6 |
|
|