Interface Token
-
- All Superinterfaces:
TokenTypes
- All Known Implementing Classes:
TokenImpl
public interface Token extends TokenTypes
A generic token that functions as a node in a linked list of syntax highlighted tokens for some language.A
Token
is a piece of text representing some logical token in source code for a programming language. For example, the line of C code:int i = 0;
would be broken into 8Token
s: the first representingint
, the second whitespace, the thirdi
, the fourth whitespace, the fifth=
, etc.Note: The tokens returned by
RSyntaxDocument
s are pooled and should always be treated as immutable. Modifying tokens you did not create yourself can and will result in rendering issues and/or runtime exceptions. You have been warned!
-
-
Field Summary
-
Fields inherited from interface org.fife.ui.rsyntaxtextarea.TokenTypes
ANNOTATION, COMMENT_DOCUMENTATION, COMMENT_EOL, COMMENT_KEYWORD, COMMENT_MARKUP, COMMENT_MULTILINE, DATA_TYPE, DEFAULT_NUM_TOKEN_TYPES, ERROR_CHAR, ERROR_IDENTIFIER, ERROR_NUMBER_FORMAT, ERROR_STRING_DOUBLE, FUNCTION, IDENTIFIER, LITERAL_BACKQUOTE, LITERAL_BOOLEAN, LITERAL_CHAR, LITERAL_NUMBER_DECIMAL_INT, LITERAL_NUMBER_FLOAT, LITERAL_NUMBER_HEXADECIMAL, LITERAL_STRING_DOUBLE_QUOTE, MARKUP_CDATA, MARKUP_CDATA_DELIMITER, MARKUP_COMMENT, MARKUP_DTD, MARKUP_ENTITY_REFERENCE, MARKUP_PROCESSING_INSTRUCTION, MARKUP_TAG_ATTRIBUTE, MARKUP_TAG_ATTRIBUTE_VALUE, MARKUP_TAG_DELIMITER, MARKUP_TAG_NAME, NULL, OPERATOR, PREPROCESSOR, REGEX, RESERVED_WORD, RESERVED_WORD_2, SEPARATOR, VARIABLE, WHITESPACE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringBuilder
appendHTMLRepresentation(StringBuilder sb, RSyntaxTextArea textArea, boolean fontFamily)
Appends HTML code for painting this token, using the given text area's color scheme.StringBuilder
appendHTMLRepresentation(StringBuilder sb, RSyntaxTextArea textArea, boolean fontFamily, boolean tabsToSpaces)
Appends HTML code for painting this token, using the given text area's color scheme.char
charAt(int index)
Returns the character at the specified offset in the token.boolean
containsPosition(int pos)
Returns whether the token straddles the specified position in the document.int
documentToToken(int pos)
Returns the position in the token's internal char array corresponding to the specified document position.boolean
endsWith(char[] ch)
Returns whether this token's lexeme ends with the specified characters.int
getEndOffset()
Returns the end offset of this token in the document (exclusive).String
getHTMLRepresentation(RSyntaxTextArea textArea)
Returns aString
containing HTML code for painting this token, using the given text area's color scheme.int
getLanguageIndex()
Returns the language index of this token.Token
getLastNonCommentNonWhitespaceToken()
Returns the last token in this list that is not whitespace or a comment.Token
getLastPaintableToken()
Returns the last paintable token in this token list, ornull
if there is no paintable token.String
getLexeme()
Returns the text of this token, as a string.int
getListOffset(RSyntaxTextArea textArea, TabExpander e, float x0, float x)
Determines the offset into this token list (i.e., into the document) that covers pixel locationx
if the token list starts at pixel locationx0
Token
getNextToken()
Returns the token after this one in the linked list.int
getOffset()
Returns the offset into the document at which this token resides.int
getOffsetBeforeX(RSyntaxTextArea textArea, TabExpander e, float startX, float endBeforeX)
Returns the position in the document that represents the last character in the token that will fit intoendBeforeX-startX
pixels.char[]
getTextArray()
Returns the character array backing the lexeme of this token.int
getTextOffset()
Returns the offset into the character array of the lexeme ingetTextArray()
.int
getType()
Returns the type of this token.float
getWidth(RSyntaxTextArea textArea, TabExpander e, float x0)
Returns the width of this token given the specified parameters.float
getWidthUpTo(int numChars, RSyntaxTextArea textArea, TabExpander e, float x0)
Returns the width of a specified number of characters in this token.boolean
is(char[] lexeme)
Returns whether this token's lexeme matches a specific character array.boolean
is(int type, char[] lexeme)
Returns whether this token is of the specified type, with the specified lexeme.boolean
is(int type, String lexeme)
Returns whether this token is of the specified type, with the specified lexeme.boolean
isComment()
Returns whether this token is a comment.boolean
isCommentOrWhitespace()
Returns whether this token is a comment or whitespace.boolean
isHyperlink()
Returns whether this token is a hyperlink.boolean
isIdentifier()
Returns whether this token is an identifier.boolean
isLeftCurly()
Returns whether this token is aTokenTypes.SEPARATOR
representing a single left curly brace.boolean
isPaintable()
Returns whether or not this token is "paintable;" i.e., whether or not the type of this token is one such that it has an associated syntax style.boolean
isRightCurly()
Returns whether this token is aTokenTypes.SEPARATOR
representing a single right curly brace.boolean
isSingleChar(char ch)
Returns whether this token is the specified single character.boolean
isSingleChar(int type, char ch)
Returns whether this token is the specified single character, and of a specific type.boolean
isWhitespace()
Returns whether or not this token is whitespace.int
length()
Returns the length of this token.Rectangle
listOffsetToView(RSyntaxTextArea textArea, TabExpander e, int pos, int x0, Rectangle rect)
Returns the bounding box for the specified document location.void
setHyperlink(boolean hyperlink)
Sets whether this token is a hyperlink.void
setLanguageIndex(int languageIndex)
Sets the language index for this token.void
setType(int type)
Sets the type of this token.boolean
startsWith(char[] chars)
Returns whether this token starts with the specified characters.int
tokenToDocument(int pos)
Returns the position in the document corresponding to the specified position in this token's internal char array (textOffset
-textOffset+textCount-1
).
-
-
-
Method Detail
-
appendHTMLRepresentation
StringBuilder appendHTMLRepresentation(StringBuilder sb, RSyntaxTextArea textArea, boolean fontFamily)
Appends HTML code for painting this token, using the given text area's color scheme.- Parameters:
sb
- The buffer to append to.textArea
- The text area whose color scheme to use.fontFamily
- Whether to include the font family in the HTML for this token. You can passfalse
for this parameter if, for example, you are making all your HTML be monospaced, and don't want any crazy fonts being used in the editor to be reflected in your HTML.- Returns:
- The buffer appended to.
- See Also:
getHTMLRepresentation(RSyntaxTextArea)
-
appendHTMLRepresentation
StringBuilder appendHTMLRepresentation(StringBuilder sb, RSyntaxTextArea textArea, boolean fontFamily, boolean tabsToSpaces)
Appends HTML code for painting this token, using the given text area's color scheme.- Parameters:
sb
- The buffer to append to.textArea
- The text area whose color scheme to use.fontFamily
- Whether to include the font family in the HTML for this token. You can passfalse
for this parameter if, for example, you are making all your HTML be monospaced, and don't want any crazy fonts being used in the editor to be reflected in your HTML.tabsToSpaces
- Whether to convert tabs into spaces.- Returns:
- The buffer appended to.
- See Also:
getHTMLRepresentation(RSyntaxTextArea)
-
charAt
char charAt(int index)
Returns the character at the specified offset in the token.
-
containsPosition
boolean containsPosition(int pos)
Returns whether the token straddles the specified position in the document.- Parameters:
pos
- The position in the document to check.- Returns:
- Whether the specified position is straddled by this token.
-
documentToToken
int documentToToken(int pos)
Returns the position in the token's internal char array corresponding to the specified document position.Note that this method does NOT do any bounds checking; you can pass in a document position that does not correspond to a position in this token, and you will not receive an Exception or any other notification; it is up to the caller to ensure valid input.
- Parameters:
pos
- A position in the document that is represented by this token.- Returns:
- The corresponding token position >=
textOffset
and <textOffset+textCount
. - See Also:
tokenToDocument(int)
-
endsWith
boolean endsWith(char[] ch)
Returns whether this token's lexeme ends with the specified characters.- Parameters:
ch
- The characters.- Returns:
- Whether this token's lexeme ends with the specified characters.
- See Also:
startsWith(char[])
-
getEndOffset
int getEndOffset()
Returns the end offset of this token in the document (exclusive). In other words, the token ranges from[getOffset(), getEndOffset())
.- Returns:
- The end offset of this token.
- See Also:
getOffset()
-
getHTMLRepresentation
String getHTMLRepresentation(RSyntaxTextArea textArea)
Returns aString
containing HTML code for painting this token, using the given text area's color scheme.- Parameters:
textArea
- The text area whose color scheme to use.- Returns:
- The HTML representation of the token.
- See Also:
appendHTMLRepresentation(StringBuilder, RSyntaxTextArea, boolean)
-
getLanguageIndex
int getLanguageIndex()
Returns the language index of this token.- Returns:
- The language index. A value of
0
denotes the "main" language, any positive value denotes a specific secondary language. - See Also:
setLanguageIndex(int)
-
getLastNonCommentNonWhitespaceToken
Token getLastNonCommentNonWhitespaceToken()
Returns the last token in this list that is not whitespace or a comment.- Returns:
- The last non-comment, non-whitespace token, or
null
if there isn't one.
-
getLastPaintableToken
Token getLastPaintableToken()
Returns the last paintable token in this token list, ornull
if there is no paintable token.- Returns:
- The last paintable token in this token list.
-
getLexeme
String getLexeme()
Returns the text of this token, as a string.Note that this method isn't used much by the
ryntaxtextarea
package internally, as it tries to limit memory allocation.- Returns:
- The text of this token.
-
getListOffset
int getListOffset(RSyntaxTextArea textArea, TabExpander e, float x0, float x)
Determines the offset into this token list (i.e., into the document) that covers pixel locationx
if the token list starts at pixel locationx0
. This method will return the document position "closest" to the x-coordinate (i.e., if they click on the "right-half" of the
w
inawe
, the caret will be placed in between thew
ande
; similarly, clicking on the left-half places the caret between thea
andw
). This makes it useful for methods such asviewToModel
found injavax.swing.text.View
subclasses.- Parameters:
textArea
- The text area from which the token list was derived.e
- How to expand tabs.x0
- The pixel x-location that is the beginning oftokenList
.x
- The pixel-position for which you want to get the corresponding offset.- Returns:
- The position (in the document, NOT into the token list!) that
covers the pixel location. If
tokenList
isnull
or has typeToken.NULL
, then-1
is returned; the caller should recognize this and return the actual end position of the (empty) line.
-
getNextToken
Token getNextToken()
Returns the token after this one in the linked list.- Returns:
- The next token.
-
getOffset
int getOffset()
Returns the offset into the document at which this token resides.- Returns:
- The offset into the document.
- See Also:
getEndOffset()
-
getOffsetBeforeX
int getOffsetBeforeX(RSyntaxTextArea textArea, TabExpander e, float startX, float endBeforeX)
Returns the position in the document that represents the last character in the token that will fit intoendBeforeX-startX
pixels. For example, if you're using a monospaced 8-pixel-per-character font, have the token "while" andstartX
is0
andendBeforeX
is30
, this method will return the document position of the "i" in "while", because the "i" ends at pixel24
, while the "l" ends at32
. If not even the first character fits inendBeforeX-startX
, the first character's position is still returned so calling methods don't go into infinite loops.- Parameters:
textArea
- The text area in which this token is being painted.e
- How to expand tabs.startX
- The x-coordinate at which the token will be painted. This is needed because of tabs.endBeforeX
- The x-coordinate for which you want to find the last character oft
which comes before it.- Returns:
- The last document position that will fit in the specified amount of pixels.
-
getTextArray
char[] getTextArray()
Returns the character array backing the lexeme of this token. This value should be treated as read-only.- Returns:
- A character array containing the lexeme of this token.
- See Also:
getTextOffset()
,length()
-
getTextOffset
int getTextOffset()
Returns the offset into the character array of the lexeme ingetTextArray()
.- Returns:
- The offset of the lexeme in the character array.
- See Also:
getTextArray()
-
getType
int getType()
Returns the type of this token.- Returns:
- The type of this token.
- See Also:
TokenTypes
,setType(int)
-
getWidth
float getWidth(RSyntaxTextArea textArea, TabExpander e, float x0)
Returns the width of this token given the specified parameters.- Parameters:
textArea
- The text area in which the token is being painted.e
- Describes how to expand tabs. This parameter cannot benull
.x0
- The pixel-location at which the token begins. This is needed because of tabs.- Returns:
- The width of the token, in pixels.
- See Also:
getWidthUpTo(int, org.fife.ui.rsyntaxtextarea.RSyntaxTextArea, javax.swing.text.TabExpander, float)
-
getWidthUpTo
float getWidthUpTo(int numChars, RSyntaxTextArea textArea, TabExpander e, float x0)
Returns the width of a specified number of characters in this token. For example, for the token "while", specifying a value of3
here returns the width of the "whi" portion of the token.- Parameters:
numChars
- The number of characters for which to get the width.textArea
- The text area in which the token is being painted.e
- How to expand tabs. This value cannot benull
.x0
- The pixel-location at which this token begins. This is needed because of tabs.- Returns:
- The width of the specified number of characters in this token.
- See Also:
getWidth(org.fife.ui.rsyntaxtextarea.RSyntaxTextArea, javax.swing.text.TabExpander, float)
-
is
boolean is(char[] lexeme)
Returns whether this token's lexeme matches a specific character array.- Parameters:
lexeme
- The lexeme to check for.- Returns:
- Whether this token has that lexeme.
- See Also:
is(int, char[])
,is(int, String)
,isSingleChar(int, char)
,startsWith(char[])
-
is
boolean is(int type, char[] lexeme)
Returns whether this token is of the specified type, with the specified lexeme.This method is preferred over the other overload in performance-critical code where this operation may be called frequently, since it does not involve any String allocations.
- Parameters:
type
- The type to check for.lexeme
- The lexeme to check for.- Returns:
- Whether this token has that type and lexeme.
- See Also:
is(int, String)
,is(char[])
,isSingleChar(int, char)
,startsWith(char[])
-
is
boolean is(int type, String lexeme)
Returns whether this token is of the specified type, with the specified lexeme.The other overload of this method is preferred over this one in performance-critical code, as this one involves a String allocation while the other does not.
- Parameters:
type
- The type to check for.lexeme
- The lexeme to check for.- Returns:
- Whether this token has that type and lexeme.
- See Also:
is(int, char[])
,isSingleChar(int, char)
,startsWith(char[])
-
isComment
boolean isComment()
Returns whether this token is a comment.- Returns:
- Whether this token is a comment.
- See Also:
isWhitespace()
,isCommentOrWhitespace()
-
isCommentOrWhitespace
boolean isCommentOrWhitespace()
Returns whether this token is a comment or whitespace.- Returns:
- Whether this token is a comment or whitespace.
- See Also:
isComment()
,isWhitespace()
-
isHyperlink
boolean isHyperlink()
Returns whether this token is a hyperlink.- Returns:
- Whether this token is a hyperlink.
- See Also:
setHyperlink(boolean)
-
isIdentifier
boolean isIdentifier()
Returns whether this token is an identifier.- Returns:
- Whether this token is an identifier.
-
isLeftCurly
boolean isLeftCurly()
Returns whether this token is aTokenTypes.SEPARATOR
representing a single left curly brace.- Returns:
- Whether this token is a left curly brace.
- See Also:
isRightCurly()
-
isRightCurly
boolean isRightCurly()
Returns whether this token is aTokenTypes.SEPARATOR
representing a single right curly brace.- Returns:
- Whether this token is a right curly brace.
- See Also:
isLeftCurly()
-
isPaintable
boolean isPaintable()
Returns whether or not this token is "paintable;" i.e., whether or not the type of this token is one such that it has an associated syntax style. What this boils down to is whether the token type is greater thanToken.NULL
.- Returns:
- Whether or not this token is paintable.
-
isSingleChar
boolean isSingleChar(char ch)
Returns whether this token is the specified single character.- Parameters:
ch
- The character to check for.- Returns:
- Whether this token's lexeme is the single character specified.
- See Also:
isSingleChar(int, char)
-
isSingleChar
boolean isSingleChar(int type, char ch)
Returns whether this token is the specified single character, and of a specific type.- Parameters:
type
- The token type.ch
- The character to check for.- Returns:
- Whether this token is of the specified type, and with a lexeme Equaling the single character specified.
- See Also:
isSingleChar(char)
-
isWhitespace
boolean isWhitespace()
Returns whether or not this token is whitespace.- Returns:
true
iff this token is whitespace.- See Also:
isComment()
,isCommentOrWhitespace()
-
length
int length()
Returns the length of this token.- Returns:
- The length of this token.
- See Also:
getOffset()
-
listOffsetToView
Rectangle listOffsetToView(RSyntaxTextArea textArea, TabExpander e, int pos, int x0, Rectangle rect)
Returns the bounding box for the specified document location. The location must be in the specified token list; if it isn't,null
is returned.- Parameters:
textArea
- The text area from which the token list was derived.e
- How to expand tabs.pos
- The position in the document for which to get the bounding box in the view.x0
- The pixel x-location that is the beginning oftokenList
.rect
- The rectangle in which we'll be returning the results. This object is reused to keep from frequent memory allocations.- Returns:
- The bounding box for the specified position in the model.
-
setHyperlink
void setHyperlink(boolean hyperlink)
Sets whether this token is a hyperlink.- Parameters:
hyperlink
- Whether this token is a hyperlink.- See Also:
isHyperlink()
-
setLanguageIndex
void setLanguageIndex(int languageIndex)
Sets the language index for this token. If this value is positive, it denotes a specific "secondary" language this token represents (such as JavaScript code or CSS embedded in an HTML file). If this value is0
, this token is in the "main" language being edited. Negative values are invalid and treated as0
.- Parameters:
languageIndex
- The new language index. A value of0
denotes the "main" language, any positive value denotes a specific secondary language. Negative values will be treated as0
.- See Also:
getLanguageIndex()
-
setType
void setType(int type)
Sets the type of this token.- Parameters:
type
- The new token type.- See Also:
TokenTypes
,getType()
-
startsWith
boolean startsWith(char[] chars)
Returns whether this token starts with the specified characters.- Parameters:
chars
- The characters.- Returns:
- Whether this token starts with those characters.
- See Also:
endsWith(char[])
,is(int, char[])
-
tokenToDocument
int tokenToDocument(int pos)
Returns the position in the document corresponding to the specified position in this token's internal char array (textOffset
-textOffset+textCount-1
).Note that this method does NOT do any bounds checking; you can pass in an invalid token position, and you will not receive an Exception or any other indication that the returned document position is invalid. It is up to the user to ensure valid input.
- Parameters:
pos
- A position in the token's internal char array (textOffset
-textOffset+textCount
).- Returns:
- The corresponding position in the document.
- See Also:
documentToToken(int)
-
-