|
What this is
Other links
The source code
package com.swabunga.spell.event;
/**
* A basic word finder, which searches text for sequences of letters.
*
* @author Anthony Roy (ajr@antroy.co.uk)
*/
public class JavaWordFinder extends AbstractWordFinder {
//~ Instance/static variables ...............................................
private boolean inComment;
//~ Constructors ............................................................
/**
* Creates a new DefaultWordFinder object.
*
* @param inText the String to search
*/
public JavaWordFinder(String inText) {
super(inText);
}
public JavaWordFinder() {
super();
}
//~ Methods .................................................................
/**
* This method scans the text from the end of the last word, and returns a
* new Word object corresponding to the next word.
*
* @return the next word.
* @throws WordNotFoundException search string contains no more words.
*/
public Word next() {
if (nextWord == null) {
throw new WordNotFoundException("No more words found.");
}
currentWord.copy(nextWord);
int current = sentenceIterator.current();
setSentenceIterator(currentWord);
int i = currentWord.getEnd();
boolean finished = false;
boolean started = false;
search:
while (i < text.length() && !finished) {
i = ignore(i, '@');
i = ignore(i, "
|
Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com