public interface IWordDetector
WordRule
determines whether a given character is valid as part
of a word in the current context.Modifier and Type | Method and 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.
|
boolean isWordStart(char c)
c
- the character to be checkedtrue
is a valid first character in a word, false
otherwiseboolean isWordPart(char c)
c
- the character to be checkedtrue
if the character is a valid word part, false
otherwise
Copyright (c) 2000, 2018 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.