public class DocumentWordTokenizer extends java.lang.Object implements WordTokenizer
| Constructor and Description |
|---|
DocumentWordTokenizer(javax.swing.text.Document document)
Creates a new DocumentWordTokenizer to work on a document
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getContext()
Returns the current text that is being tokenized (includes any changes
that have been made)
|
int |
getCurrentWordCount()
Returns the number of word tokens that have been processed thus far
|
int |
getCurrentWordEnd()
Returns an index representing the end location of the current word in the text.
|
int |
getCurrentWordPosition()
Returns the number of word tokens that have been processed thus far
|
boolean |
hasMoreWords()
Indicates if there are more words left
|
boolean |
isNewSentence()
Indicates if the current word is at the start of a sentence
|
java.lang.String |
nextWord()
This returns the next word in the iteration.
|
void |
posStartFullWordFrom(int pos)
Sets the current word position at the start of the word containing
the char at position pos.
|
void |
replaceWord(java.lang.String newWord)
Replaces the current word token
|
public DocumentWordTokenizer(javax.swing.text.Document document)
document - The document to spell checkpublic boolean hasMoreWords()
hasMoreWords in interface WordTokenizerpublic void posStartFullWordFrom(int pos)
pos - position in the word we want to set as current.public int getCurrentWordPosition()
getCurrentWordPosition in interface WordTokenizerpublic int getCurrentWordEnd()
getCurrentWordEnd in interface WordTokenizerpublic java.lang.String nextWord()
nextWord in interface WordTokenizerpublic int getCurrentWordCount()
getCurrentWordCount in interface WordTokenizerpublic void replaceWord(java.lang.String newWord)
replaceWord in interface WordTokenizernewWord - The new word to replace the misspelt onepublic java.lang.String getContext()
getContext in interface WordTokenizerpublic boolean isNewSentence()
isNewSentence in interface WordTokenizer