devdaily home | apple | java | perl | unix | directory | blog

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

package com.swabunga.spell.event;

import java.util.List;

/**
 * This event is fired off by the SpellChecker and is passed to the
 * registered SpellCheckListeners
 * 

* AFAIK we will only require one implementation of the SpellCheckEvent * (BasicSpellCheckEvent) but I have defnied this interface just in case. The * BasicSpellCheckEvent implementation is currently package private. *

* * @author Jason Height (jheight@chariot.net.au) */ public interface SpellCheckEvent { /** Field indicating that the incorrect word should be ignored*/ public static final short IGNORE = 0; /** Field indicating that the incorrect word should be ignored forever*/ public static final short IGNOREALL = 1; /** Field indicating that the incorrect word should be replaced*/ public static final short REPLACE = 2; /** Field indicating that the incorrect word should be replaced always*/ public static final short REPLACEALL = 3; /** Field indicating that the incorrect word should be added to the dictionary*/ public static final short ADDTODICT = 4; /** Field indicating that the spell checking should be terminated*/ public static final short CANCEL = 5; /** Initial case for the action */ public static final short INITIAL = -1; /** Returns the list of suggested Word objects*/ public List getSuggestions(); /** Returns the currently misspelt word*/ public String getInvalidWord(); /** Returns the context in which the misspelt word is used*/ public String getWordContext(); /** Returns the start position of the misspelt word in the context*/ public int getWordContextPosition(); public short getAction(); public String getReplaceWord(); /** Set the action to replace the currently misspelt word with the new word * @param newWord The word to replace the currently misspelt word * @param replaceAll If set to true, the SpellChecker will replace all * further occurances of the misspelt word without firing a SpellCheckEvent. */ public void replaceWord(String newWord, boolean replaceAll); /** Set the action it ignore the currently misspelt word. * @param ignoreAll If set to true, the SpellChecker will replace all * further occurances of the misspelt word without firing a SpellCheckEvent. */ public void ignoreWord(boolean ignoreAll); /** Set the action to add a new word into the dictionary. This will also replace the * currently misspelt word. */ public void addToDictionary(String newWord); /** Set the action to terminate processing of the spellchecker. */ public void cancel(); }




Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
 
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com