Package org.fife.ui.rsyntaxtextarea
Class TokenMap
- java.lang.Object
-
- org.fife.ui.rsyntaxtextarea.TokenMap
-
public class TokenMap extends Object
A hash table for reserved words, etc. defined by aTokenMaker
. This class is designed for the quick lookup of tokens, as it can compareSegment
s without the need to allocate a new string.The
org.fife.ui.rsyntaxtextarea
package uses this class to help identify reserved words in programming languages. An instance ofTokenMaker
will create and initialize an instance of this class containing all reserved words, data types, and all other words that need to be syntax-highlighted for that particular language. When the token maker parses a line and identifies an individual token, it is looked up in theTokenMap
to see if it should be syntax-highlighted.
-
-
Constructor Summary
Constructors Constructor Description TokenMap()
Constructs a new token map that is case-sensitive.TokenMap(boolean ignoreCase)
Constructs a new token map.TokenMap(int size)
Constructs a new token map that is case-sensitive.TokenMap(int size, boolean ignoreCase)
Constructs a new token map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
get(char[] array1, int start, int end)
Returns the token type associated with the given text, if the given text is in this token map.int
get(Segment text, int start, int end)
Returns the token type associated with the given text, if the given text is in this token map.protected boolean
isIgnoringCase()
Returns whether this token map ignores case when checking for tokens.void
put(String string, int tokenType)
Adds a string to this token map.
-
-
-
Constructor Detail
-
TokenMap
public TokenMap()
Constructs a new token map that is case-sensitive.
-
TokenMap
public TokenMap(int size)
Constructs a new token map that is case-sensitive.- Parameters:
size
- The size of the token map.
-
TokenMap
public TokenMap(boolean ignoreCase)
Constructs a new token map.- Parameters:
ignoreCase
- Whether or not this token map should ignore case when comparing tokens.
-
TokenMap
public TokenMap(int size, boolean ignoreCase)
Constructs a new token map.- Parameters:
size
- The size of the token map.ignoreCase
- Whether or not this token map should ignore case when comparing tokens.
-
-
Method Detail
-
get
public int get(Segment text, int start, int end)
Returns the token type associated with the given text, if the given text is in this token map. If it isn't,-1
is returned.- Parameters:
text
- The segment from which to get the text to compare.start
- The starting index in the segment of the text.end
- The ending index in the segment of the text.- Returns:
- The token type associated with the given text, or
-1
if this token was not specified in this map.
-
get
public int get(char[] array1, int start, int end)
Returns the token type associated with the given text, if the given text is in this token map. If it isn't,-1
is returned.- Parameters:
array1
- An array of characters containing the text.start
- The starting index in the array of the text.end
- The ending index in the array of the text.- Returns:
- The token type associated with the given text, or
-1
if this token was not specified in this map.
-
isIgnoringCase
protected boolean isIgnoringCase()
Returns whether this token map ignores case when checking for tokens. This property is set in the constructor and cannot be changed, as this is an intrinsic property of a particular programming language.- Returns:
- Whether or not this token maker is ignoring case.
-
put
public void put(String string, int tokenType)
Adds a string to this token map.- Parameters:
string
- The string to add.tokenType
- The type of token the string is.
-
-