Uses of Interface
org.fife.ui.rsyntaxtextarea.Token
-
Packages that use Token Package Description org.fife.ui.rsyntaxtextarea A syntax-highlighting text editor.org.fife.ui.rsyntaxtextarea.folding Code folding functionality.org.fife.ui.rsyntaxtextarea.modes Scanners that tokenize source inRSyntaxTextArea
. -
-
Uses of Token in org.fife.ui.rsyntaxtextarea
Classes in org.fife.ui.rsyntaxtextarea that implement Token Modifier and Type Class Description class
TokenImpl
The default implementation ofToken
.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
Token
TokenUtils.TokenSubList. tokenList
The "sub" token list.Methods in org.fife.ui.rsyntaxtextarea that return Token Modifier and Type Method Description Token
Token. getLastNonCommentNonWhitespaceToken()
Returns the last token in this list that is not whitespace or a comment.Token
TokenImpl. getLastNonCommentNonWhitespaceToken()
Token
Token. getLastPaintableToken()
Returns the last paintable token in this token list, ornull
if there is no paintable token.Token
TokenImpl. getLastPaintableToken()
static Token
RSyntaxUtilities. getNextImportantToken(Token t, RSyntaxTextArea textArea, int line)
Returns the next non-whitespace, non-comment token in a text area.Token
Token. getNextToken()
Returns the token after this one in the linked list.Token
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, ornull
if the given offset isn't in this token list's range.
Note that this method does NOT check to see iftokenList
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, ornull
if the given offset isn't in this token list's range.Token
TokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
RSyntaxTextArea. getTokenListFor(int startOffs, int endOffs)
Returns a token list for the given range in the document.Token
RSyntaxDocument. getTokenListForLine(int line)
Returns a token list for the specified segment of text representing the specified line number.Token
RSyntaxTextArea. getTokenListForLine(int line)
Returns a list of tokens representing the given line.Token
SyntaxView. getTokenListForPhysicalLineAbove(int offset)
Returns a token list for the physical line above the physical line containing the specified offset into the document.Token
TokenOrientedView. getTokenListForPhysicalLineAbove(int offset)
Returns a token list for the physical line above the physical line containing the specified offset into the document.Token
SyntaxView. getTokenListForPhysicalLineBelow(int offset)
Returns a token list for the physical line below the physical line containing the specified offset into the document.Token
TokenOrientedView. getTokenListForPhysicalLineBelow(int offset)
Returns a token list for the physical line below the physical line containing the specified offset into the document.Token
DefaultOccurrenceMarker. getTokenToMark(RSyntaxTextArea textArea)
Token
HtmlOccurrenceMarker. getTokenToMark(RSyntaxTextArea textArea)
Token
OccurrenceMarker. getTokenToMark(RSyntaxTextArea textArea)
Returns the token to mark occurrences, of, provided it matches the criteria put forth byOccurrenceMarker.isValidType(RSyntaxTextArea, Token)
.Token
XmlOccurrenceMarker. getTokenToMark(RSyntaxTextArea textArea)
Token
RSyntaxTextArea. modelToToken(int offs)
Returns the token at the specified position in the model.Token
TokenIterator. next()
Returns the next paintable token in the document.Token
RSyntaxTextArea. viewToToken(java.awt.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 java.util.Iterator<Token>
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, java.awt.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, java.awt.Graphics2D g, float x, float y, int selStart, int selEnd)
Draws the passed-in text using syntax highlighting for the current language.java.awt.Color
RSyntaxTextArea. getBackgroundForToken(Token token)
Returns the background color for a token.java.awt.Color
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
TokenMaker. getShouldIndentNextLineAfter(Token token)
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 returnsfalse
always.static TokenUtils.TokenSubList
TokenUtils. getSubTokenList(Token tokenList, int pos, javax.swing.text.TabExpander e, RSyntaxTextArea textArea, float x0)
Modifies the passed-in token list to start at the specified offset.static TokenUtils.TokenSubList
TokenUtils. getSubTokenList(Token tokenList, int pos, javax.swing.text.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, ornull
if the given offset isn't in this token list's range.
Note that this method does NOT check to see iftokenList
is null; callers should check for themselves.static Token
RSyntaxUtilities. getTokenAtOffsetOrLastTokenIfEndOfLine(Token tokenList, int offset)
Returns the token at the specified index, ornull
if the given offset isn't in this token list's range.static float
RSyntaxUtilities. getTokenListWidth(Token tokenList, RSyntaxTextArea textArea, javax.swing.text.TabExpander e)
Determines the width of the given token list taking tabs into consideration.static float
RSyntaxUtilities. getTokenListWidth(Token tokenList, RSyntaxTextArea textArea, javax.swing.text.TabExpander e, float x0)
Determines the width of the given token list taking tabs into consideration.static float
RSyntaxUtilities. getTokenListWidthUpTo(Token tokenList, RSyntaxTextArea textArea, javax.swing.text.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
TokenUtils. isBlankOrAllWhiteSpace(Token t)
Returns whether a token list isnull
, empty, all whitespace, just comment token(s), or any combination of those.static boolean
TokenUtils. isBlankOrAllWhiteSpaceWithoutComments(Token t)
Returns whether a token list isnull
, 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
DefaultOccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
void
HtmlOccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
void
OccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
Called when occurrences of a token should be marked.void
XmlOccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
static void
DefaultOccurrenceMarker. markOccurrencesOfToken(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
Highlights all instances of tokens identical tot
in the specified document.float
DefaultTokenPainter. paint(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e)
float
DefaultTokenPainter. paint(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, float clipStart)
float
DefaultTokenPainter. paint(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, float clipStart, boolean paintBG)
float
TokenPainter. paint(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e)
Paints this token.float
TokenPainter. paint(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, float clipStart)
Paints this token.float
TokenPainter. paint(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, float clipStart, boolean paintBG)
Paints this token.protected float
DefaultTokenPainter. paintImpl(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, float clipStart, boolean selected, boolean useSTC)
Does the dirty-work of actually painting the token.protected float
VisibleWhitespaceTokenPainter. paintImpl(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, float clipStart, boolean selected, boolean useSTC)
float
DefaultTokenPainter. paintSelected(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, boolean useSTC)
float
DefaultTokenPainter. paintSelected(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.TabExpander e, float clipStart, boolean useSTC)
float
TokenPainter. paintSelected(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.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 parentRSyntaxTextArea
).float
TokenPainter. paintSelected(Token token, java.awt.Graphics2D g, float x, float y, RSyntaxTextArea host, javax.swing.text.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 parentRSyntaxTextArea
).protected void
DefaultTokenPainter. paintTabLines(Token token, int x, int y, int endX, java.awt.Graphics2D g, javax.swing.text.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 java.lang.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 Constructor Description Entry(boolean open, Token t)
Entry(boolean open, Token t)
TokenImpl(Token t2)
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
Fields in org.fife.ui.rsyntaxtextarea.folding declared as Token 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, java.util.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(java.util.Stack<java.lang.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
Methods in org.fife.ui.rsyntaxtextarea.modes that return Token Modifier and Type Method Description Token
ActionScriptTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
Assembler6502TokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
AssemblerX86TokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
BBCodeTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
ClojureTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
CPlusPlusTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
CSharpTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
CSSTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
CsvTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
CTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
DartTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
DelphiTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
DockerTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
DtdTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
DTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
FortranTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
GoTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
GroovyTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
HandlebarsTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
HostsTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
HtaccessTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
HTMLTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
IniTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
JavaScriptTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
JavaTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
JsonTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
JSPTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
KotlinTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
LatexTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
LispTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
LuaTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
MakefileTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
MarkdownTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
MxmlTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
NSISTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
PerlTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
PHPTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
PlainTextTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
PropertiesFileTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
ProtoTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
PythonTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
RubyTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
RustTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
SASTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
ScalaTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
SQLTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Token
TclTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
TypeScriptTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
UnixShellTokenMaker. getTokenList(javax.swing.text.Segment text, int startTokenType, int startOffset)
Returns a list of tokens representing the given text.Token
VisualBasicTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
WindowsBatchTokenMaker. getTokenList(javax.swing.text.Segment text, int startTokenType, int startOffset)
Returns a list of tokens representing the given text.Token
XMLTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
YamlTokenMaker. getTokenList(javax.swing.text.Segment text, int initialTokenType, int startOffset)
Returns the first token in the linked list of tokens generated fromtext
.Token
ActionScriptTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
Assembler6502TokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
AssemblerX86TokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
BBCodeTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
ClojureTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
CPlusPlusTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
CSharpTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
CSSTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
CsvTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
CTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
DartTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
DelphiTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
DockerTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
DtdTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
DTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
FortranTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
GoTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
GroovyTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
HandlebarsTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
HostsTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
HtaccessTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
HTMLTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
IniTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
JavaScriptTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
JavaTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
JsonTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
JSPTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
KotlinTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
LatexTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
LispTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
LuaTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
MakefileTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
MarkdownTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
MxmlTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
NSISTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
PerlTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
PHPTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
PlainTextTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
PropertiesFileTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
ProtoTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
PythonTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
RubyTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
RustTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
SASTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
ScalaTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
SQLTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
TclTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
TypeScriptTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
VisualBasicTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
XMLTokenMaker. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Token
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
CSSTokenMaker. getShouldIndentNextLineAfter(Token t)
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
JsonTokenMaker. getShouldIndentNextLineAfter(Token t)
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.
-