Uses of Class
org.gjt.sp.jedit.syntax.TokenMarker.LineContext

Packages that use TokenMarker.LineContext
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 TokenMarker.LineContext in org.gjt.sp.jedit.buffer
 

Methods in org.gjt.sp.jedit.buffer that return TokenMarker.LineContext
 TokenMarker.LineContext LineManager.getLineContext(int line)
           
 

Methods in org.gjt.sp.jedit.buffer with parameters of type TokenMarker.LineContext
 void LineManager.setLineContext(int line, TokenMarker.LineContext context)
           
 

Uses of TokenMarker.LineContext in org.gjt.sp.jedit.syntax
 

Fields in org.gjt.sp.jedit.syntax declared as TokenMarker.LineContext
protected  TokenMarker.LineContext DefaultTokenHandler.lineContext
           
 TokenMarker.LineContext TokenMarker.LineContext.parent
           
 

Methods in org.gjt.sp.jedit.syntax that return TokenMarker.LineContext
 TokenMarker.LineContext DefaultTokenHandler.getLineContext()
          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).
 TokenMarker.LineContext TokenMarker.LineContext.intern()
           
 TokenMarker.LineContext TokenMarker.markTokens(TokenMarker.LineContext prevContext, TokenHandler tokenHandler, javax.swing.text.Segment line)
          Do not call this method directly; call Buffer.markTokens() instead.
 

Methods in org.gjt.sp.jedit.syntax with parameters of type TokenMarker.LineContext
protected  void DefaultTokenHandler.addToken(Token token, TokenMarker.LineContext context)
           
protected  Token DefaultTokenHandler.createToken(byte id, int offset, int length, TokenMarker.LineContext context)
           
protected  ParserRuleSet DefaultTokenHandler.getParserRuleSet(TokenMarker.LineContext context)
           
 void TokenHandler.handleToken(javax.swing.text.Segment seg, byte id, int offset, int length, TokenMarker.LineContext context)
          Called by the token marker when a syntax token has been parsed.
 void DummyTokenHandler.handleToken(javax.swing.text.Segment seg, byte id, int offset, int length, TokenMarker.LineContext context)
          Called by the token marker when a syntax token has been parsed.
 void DisplayTokenHandler.handleToken(javax.swing.text.Segment seg, byte id, int offset, int length, TokenMarker.LineContext context)
          Called by the token marker when a syntax token has been parsed.
 void DefaultTokenHandler.handleToken(javax.swing.text.Segment seg, byte id, int offset, int length, TokenMarker.LineContext context)
          Called by the token marker when a syntax token has been parsed.
 TokenMarker.LineContext TokenMarker.markTokens(TokenMarker.LineContext prevContext, TokenHandler tokenHandler, javax.swing.text.Segment line)
          Do not call this method directly; call Buffer.markTokens() instead.
 void TokenHandler.setLineContext(TokenMarker.LineContext lineContext)
          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).
 void DummyTokenHandler.setLineContext(TokenMarker.LineContext lineContext)
          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).
 void DefaultTokenHandler.setLineContext(TokenMarker.LineContext lineContext)
          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).
 

Constructors in org.gjt.sp.jedit.syntax with parameters of type TokenMarker.LineContext
TokenMarker.LineContext(ParserRuleSet rs, TokenMarker.LineContext lc)