Uses of Interface
org.fife.ui.rsyntaxtextarea.Token

Packages that use Token
Package
Description
A syntax-highlighting text editor.
Code folding functionality.
Scanners that tokenize source in RSyntaxTextArea.
  • Uses of Token in org.fife.ui.rsyntaxtextarea

    Classes in org.fife.ui.rsyntaxtextarea that implement Token
    Modifier and Type
    Class
    Description
    class 
    The default implementation of Token.
    Fields in org.fife.ui.rsyntaxtextarea declared as Token
    Modifier and Type
    Field
    Description
    private Token
    RSyntaxDocument.cachedTokenList
     
    private Token
    TokenImpl.nextToken
    The next token in this linked list.
    private Token
    HtmlOccurrenceMarker.Entry.t
     
    private Token
    XmlOccurrenceMarker.Entry.t
     
    private Token
    TokenIterator.token
     
    TokenUtils.TokenSubList.tokenList
    The "sub" token list.
    Methods in org.fife.ui.rsyntaxtextarea that return Token
    Modifier and Type
    Method
    Description
    Returns the last token in this list that is not whitespace or a comment.
     
    Returns the last paintable token in this token list, or null if there is no paintable token.
     
    static Token
    RSyntaxUtilities.getNextImportantToken(Token t, RSyntaxTextArea textArea, int line)
    Returns the next non-whitespace, non-comment token in a text area.
    Token.getNextToken()
    Returns the token after this one in the linked list.
    TokenImpl.getNextToken()
     
    static Token
    RSyntaxUtilities.getPreviousImportantToken(RSyntaxDocument doc, int line)
    Returns the last non-whitespace, non-comment token, starting with the specified line.
    static Token
    RSyntaxUtilities.getPreviousImportantTokenFromOffs(RSyntaxDocument doc, int offs)
    Returns the last non-whitespace, non-comment token, before the specified offset.
    static Token
    HtmlOccurrenceMarker.getTagNameTokenForCaretOffset(RSyntaxTextArea textArea, OccurrenceMarker occurrenceMarker)
    If the caret is inside a tag, this method returns the token representing the tag name; otherwise, null is returned.
    static Token
    RSyntaxUtilities.getTokenAtOffset(RSyntaxDocument doc, int offset)
    Returns the token at the specified offset.
    static Token
    RSyntaxUtilities.getTokenAtOffset(RSyntaxTextArea textArea, int offset)
    Returns the token at the specified offset.
    static Token
    RSyntaxUtilities.getTokenAtOffset(Token tokenList, int offset)
    Returns the token at the specified index, or null if the given offset isn't in this token list's range.
    Note that this method does NOT check to see if tokenList is null; callers should check for themselves.
    static Token
    RSyntaxUtilities.getTokenAtOffsetOrLastTokenIfEndOfLine(RSyntaxDocument doc, int offset)
    Returns the token at the specified offset.
    static Token
    RSyntaxUtilities.getTokenAtOffsetOrLastTokenIfEndOfLine(RSyntaxTextArea textArea, int offset)
    Returns the token at the specified offset.
    static Token
    RSyntaxUtilities.getTokenAtOffsetOrLastTokenIfEndOfLine(Token tokenList, int offset)
    Returns the token at the specified index, or null if the given offset isn't in this token list's range.
    TokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    RSyntaxTextArea.getTokenListFor(int startOffs, int endOffs)
    Returns a token list for the given range in the document.
    RSyntaxDocument.getTokenListForLine(int line)
    Returns a token list for the specified segment of text representing the specified line number.
    RSyntaxTextArea.getTokenListForLine(int line)
    Returns a list of tokens representing the given line.
    SyntaxView.getTokenListForPhysicalLineAbove(int offset)
    Returns a token list for the physical line above the physical line containing the specified offset into the document.
    TokenOrientedView.getTokenListForPhysicalLineAbove(int offset)
    Returns a token list for the physical line above the physical line containing the specified offset into the document.
    SyntaxView.getTokenListForPhysicalLineBelow(int offset)
    Returns a token list for the physical line below the physical line containing the specified offset into the document.
    TokenOrientedView.getTokenListForPhysicalLineBelow(int offset)
    Returns a token list for the physical line below the physical line containing the specified offset into the document.
    DefaultOccurrenceMarker.getTokenToMark(RSyntaxTextArea textArea)
     
    HtmlOccurrenceMarker.getTokenToMark(RSyntaxTextArea textArea)
     
    OccurrenceMarker.getTokenToMark(RSyntaxTextArea textArea)
    Returns the token to mark occurrences, of, provided it matches the criteria put forth by OccurrenceMarker.isValidType(RSyntaxTextArea, Token).
    XmlOccurrenceMarker.getTokenToMark(RSyntaxTextArea textArea)
     
    RSyntaxTextArea.modelToToken(int offs)
    Returns the token at the specified position in the model.
    TokenIterator.next()
    Returns the next paintable token in the document.
    RSyntaxTextArea.viewToToken(Point p)
    Returns the token at the specified position in the view.
    Methods in org.fife.ui.rsyntaxtextarea that return types with arguments of type Token
    Modifier and Type
    Method
    Description
    RSyntaxDocument.iterator()
    Returns an iterator over the paintable tokens in this document.
    Methods in org.fife.ui.rsyntaxtextarea with parameters of type Token
    Modifier and Type
    Method
    Description
    protected int
    WrappedSyntaxView.calculateBreakPosition(int p0, Token tokenList, float x0)
    This is called by the nested wrapped line views to determine the break location.
    private TokenImpl
    RSyntaxTextArea.cloneTokenList(Token t)
    Clones a token list.
    void
    TokenImpl.copyFrom(Token t2)
    Makes one token point to the same text segment, and have the same value as another token.
    private float
    SyntaxView.drawLine(TokenPainter painter, Token token, Graphics2D g, float x, float y, int line)
    Draws the passed-in text using syntax highlighting for the current language.
    private float
    SyntaxView.drawLineWithSelection(TokenPainter painter, Token token, Graphics2D g, float x, float y, int selStart, int selEnd)
    Draws the passed-in text using syntax highlighting for the current language.
    RSyntaxTextArea.getBackgroundForToken(Token token)
    Returns the background color for a token.
    RSyntaxTextArea.getForegroundForToken(Token t)
    Returns the foreground color to use when painting a token.
    static Token
    RSyntaxUtilities.getNextImportantToken(Token t, RSyntaxTextArea textArea, int line)
    Returns the next non-whitespace, non-comment token in a text area.
    boolean
    AbstractJFlexCTokenMaker.getShouldIndentNextLineAfter(Token t)
     
    boolean
    If a line ends in the specified token, this method returns whether a new line inserted after that line should be indented.
    boolean
    TokenMakerBase.getShouldIndentNextLineAfter(Token token)
    The default implementation returns false always.
    TokenUtils.getSubTokenList(Token tokenList, int pos, TabExpander e, RSyntaxTextArea textArea, float x0)
    Modifies the passed-in token list to start at the specified offset.
    TokenUtils.getSubTokenList(Token tokenList, int pos, TabExpander e, RSyntaxTextArea textArea, float x0, TokenImpl tempToken)
    Modifies the passed-in token list to start at the specified offset.
    static Token
    RSyntaxUtilities.getTokenAtOffset(Token tokenList, int offset)
    Returns the token at the specified index, or null if the given offset isn't in this token list's range.
    Note that this method does NOT check to see if tokenList is null; callers should check for themselves.
    static Token
    RSyntaxUtilities.getTokenAtOffsetOrLastTokenIfEndOfLine(Token tokenList, int offset)
    Returns the token at the specified index, or null if the given offset isn't in this token list's range.
    static float
    RSyntaxUtilities.getTokenListWidth(Token tokenList, RSyntaxTextArea textArea, TabExpander e)
    Determines the width of the given token list taking tabs into consideration.
    static float
    RSyntaxUtilities.getTokenListWidth(Token tokenList, RSyntaxTextArea textArea, TabExpander e, float x0)
    Determines the width of the given token list taking tabs into consideration.
    static float
    RSyntaxUtilities.getTokenListWidthUpTo(Token tokenList, RSyntaxTextArea textArea, TabExpander e, float x0, int upTo)
    Determines the width of the given token list taking tabs into consideration and only up to the given index in the document (exclusive).
    boolean
    RSyntaxTextArea.getUnderlineForToken(Token t)
    Returns whether the specified token should be underlined.
    static int
    TokenUtils.getWhiteSpaceTokenLength(Token t, int tabSize, int curOffs)
    Returns the length, in characters, of a whitespace token, taking tabs into account.
    static boolean
    Returns whether a token list is null, empty, all whitespace, just comment token(s), or any combination of those.
    static boolean
    Returns whether a token list is null, empty, or all whitespace token(s).
    private boolean
    AbstractJFlexCTokenMaker.isInternalEolTokenForMLCs(Token t)
    Returns whether a given token is an internal token type that represents an MLC or documentation comment continuing on to the next line.
    static boolean
    RSyntaxUtilities.isNonWordChar(Token t)
    Returns whether the specified token is a single non-word char (e.g.
    boolean
    DefaultOccurrenceMarker.isValidType(RSyntaxTextArea textArea, Token t)
     
    boolean
    HtmlOccurrenceMarker.isValidType(RSyntaxTextArea textArea, Token t)
     
    boolean
    OccurrenceMarker.isValidType(RSyntaxTextArea textArea, Token t)
    Returns whether the specified token is a type that we can do a "mark occurrences" of.
    boolean
    XmlOccurrenceMarker.isValidType(RSyntaxTextArea textArea, Token t)
     
    void
     
    void
     
    void
    Called when occurrences of a token should be marked.
    void
     
    static void
    Highlights all instances of tokens identical to t in the specified document.
    final float
    DefaultTokenPainter.paint(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e)
     
    float
    DefaultTokenPainter.paint(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart)
     
    float
    DefaultTokenPainter.paint(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart, boolean paintBG)
     
    float
    TokenPainter.paint(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e)
    Paints this token.
    float
    TokenPainter.paint(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart)
    Paints this token.
    float
    TokenPainter.paint(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart, boolean paintBG)
    Paints this token.
    protected float
    DefaultTokenPainter.paintImpl(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart, boolean selected, boolean useSTC)
    Does the dirty-work of actually painting the token.
    protected float
    VisibleWhitespaceTokenPainter.paintImpl(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart, boolean selected, boolean useSTC)
     
    float
    DefaultTokenPainter.paintSelected(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, boolean useSTC)
     
    float
    DefaultTokenPainter.paintSelected(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart, boolean useSTC)
     
    float
    TokenPainter.paintSelected(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, boolean useSTC)
    Paints this token as it should appear in a selected region of text (assuming painting with a selection-foreground color is enabled in the parent RSyntaxTextArea).
    float
    TokenPainter.paintSelected(Token token, Graphics2D g, float x, float y, RSyntaxTextArea host, TabExpander e, float clipStart, boolean useSTC)
    Paints this token as it should appear in a selected region of text (assuming painting with a selection-foreground color is enabled in the parent RSyntaxTextArea).
    protected void
    DefaultTokenPainter.paintTabLines(Token token, int x, int y, int endX, Graphics2D g, TabExpander e, RSyntaxTextArea host)
    Paints dotted "tab" lines; that is, lines that show where your caret would go to on the line if you hit "tab".
    static boolean
    RSyntaxUtilities.regexCanFollowInJavaScript(Token t)
    Returns whether a regular expression token can follow the specified token in JavaScript.
    void
    TokenImpl.setNextToken(Token nextToken)
    Sets the "next token" pointer of this token to point to the specified token.
    static String
    TokenUtils.tokenToHtml(RSyntaxTextArea textArea, Token token)
    Generates HTML that renders a token with the style used in an RSTA instance.
    Constructors in org.fife.ui.rsyntaxtextarea with parameters of type Token
    Modifier
    Constructor
    Description
    (package private)
    Entry(boolean open, Token t)
     
    (package private)
    Entry(boolean open, Token t)
     
     
    Creates this token as a copy of the passed-in token.
     
    TokenSubList(Token tokenList, float x)
     
  • Uses of Token in org.fife.ui.rsyntaxtextarea.folding

    Modifier and Type
    Field
    Description
    private Token
    HtmlFoldParser.TagCloseInfo.closeToken
     
    Methods in org.fife.ui.rsyntaxtextarea.folding with parameters of type Token
    Modifier and Type
    Method
    Description
    private static boolean
    NsisFoldParser.foundEndKeyword(char[] keyword, Token t, Stack<char[]> endWordStack)
     
    private static int
    PythonFoldParser.getLeadingWhiteSpaceCount(Token t, int tabSize)
     
    private int
    HtmlFoldParser.getTagCloseInfo(Token tagNameToken, RSyntaxTextArea textArea, int line, HtmlFoldParser.TagCloseInfo info)
    Grabs the token representing the closing of a tag (i.e.
    private static boolean
    HtmlFoldParser.isEndOfLastFold(Stack<String> tagNameStack, Token tagNameToken)
    Returns whether a closing tag ("</...>") with a specific name is the closing tag of our current fold region.
    private static boolean
    HtmlFoldParser.isFoldableTag(Token tagNameToken)
    Returns whether a tag is one we allow as a foldable region.
    private static boolean
    JsonFoldParser.isLeftBracket(Token t)
    Returns whether a token is the left bracket token.
    boolean
    CurlyFoldParser.isLeftCurly(Token t)
    Returns whether the token is a left curly brace.
    boolean
    LispFoldParser.isLeftCurly(Token t)
     
    private static boolean
    JsonFoldParser.isRightBracket(Token t)
    Returns whether a token is the right bracket token.
    boolean
    CurlyFoldParser.isRightCurly(Token t)
    Returns whether the token is a right curly brace.
    boolean
    LispFoldParser.isRightCurly(Token t)
     
    private static boolean
    YamlFoldParser.isSpaces(Token t)
     
    private static boolean
    PythonFoldParser.tokenHasLineContinuation(Token t)
     
  • Uses of Token in org.fife.ui.rsyntaxtextarea.modes

    Modifier and Type
    Method
    Description
    ActionScriptTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    Assembler6502TokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    AssemblerX86TokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    BBCodeTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    ClojureTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    CPlusPlusTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    CSharpTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    CSSTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    CsvTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    CTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    DartTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    DelphiTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    DockerTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    DtdTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    DTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    FortranTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    GoTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    GroovyTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    HandlebarsTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    HostsTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    HtaccessTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    HTMLTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    IniTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    JavaScriptTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    JavaTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    JsonTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    JSPTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    KotlinTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    LatexTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    LispTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    LuaTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    MakefileTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    MarkdownTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    MxmlTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    NSISTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    PerlTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    PHPTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    PlainTextTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    PropertiesFileTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    ProtoTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    PythonTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    RubyTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    RustTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    SASTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    ScalaTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    SQLTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
     
    TclTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    TypeScriptTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    UnixShellTokenMaker.getTokenList(Segment text, int startTokenType, int startOffset)
    Returns a list of tokens representing the given text.
    VisualBasicTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    WindowsBatchTokenMaker.getTokenList(Segment text, int startTokenType, int startOffset)
    Returns a list of tokens representing the given text.
    XMLTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    YamlTokenMaker.getTokenList(Segment text, int initialTokenType, int startOffset)
    Returns the first token in the linked list of tokens generated from text.
    ActionScriptTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    Assembler6502TokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    AssemblerX86TokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    BBCodeTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    ClojureTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    CPlusPlusTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    CSharpTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    CSSTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    CsvTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    CTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    DartTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    DelphiTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    DockerTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    DtdTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    DTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    FortranTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    GoTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    GroovyTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    HandlebarsTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    HostsTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    HtaccessTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    HTMLTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    IniTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    JavaScriptTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    JavaTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    JsonTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    JSPTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    KotlinTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    LatexTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    LispTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    LuaTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    MakefileTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    MarkdownTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    MxmlTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    NSISTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    PerlTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    PHPTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    PlainTextTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    PropertiesFileTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    ProtoTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    PythonTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    RubyTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    RustTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    SASTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    ScalaTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    SQLTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    TclTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    TypeScriptTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    VisualBasicTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    XMLTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    YamlTokenMaker.yylex()
    Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
    Methods in org.fife.ui.rsyntaxtextarea.modes with parameters of type Token
    Modifier and Type
    Method
    Description
    boolean
     
    boolean
    HandlebarsTokenMaker.getShouldIndentNextLineAfter(Token token)
    Overridden to handle newlines in JS and CSS differently than those in markup.
    boolean
    HTMLTokenMaker.getShouldIndentNextLineAfter(Token token)
    Overridden to handle newlines in JS and CSS differently than those in markup.
    boolean
     
    boolean
    JSPTokenMaker.getShouldIndentNextLineAfter(Token token)
    Overridden to handle newlines in JS and CSS differently than those in markup.
    boolean
    PHPTokenMaker.getShouldIndentNextLineAfter(Token token)
    Overridden to handle newlines in JS and CSS differently than those in markup.
    boolean
    PythonTokenMaker.getShouldIndentNextLineAfter(Token t)
     
    private static boolean
    GroovyTokenMaker.regexCanFollow(Token t)
    Returns whether a regular expression token can follow the specified token.
    private static boolean
    PerlTokenMaker.regexCanFollow(Token t)
    Returns whether a regular expression token can follow the specified token.