Package org.eclipse.jface.text.rules
Interface IWordDetector
-
public interface IWordDetector
Defines the interface by whichWordRule
determines whether a given character is valid as part of a word in the current context.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isWordPart(char c)
Returns whether the specified character is valid as a subsequent character in a word.boolean
isWordStart(char c)
Returns whether the specified character is valid as the first character in a word.
-
-
-
Method Detail
-
isWordStart
boolean isWordStart(char c)
Returns whether the specified character is valid as the first character in a word.- Parameters:
c
- the character to be checked- Returns:
true
is a valid first character in a word,false
otherwise
-
isWordPart
boolean isWordPart(char c)
Returns whether the specified character is valid as a subsequent character in a word.- Parameters:
c
- the character to be checked- Returns:
true
if the character is a valid word part,false
otherwise
-
-