X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellDictionary.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellDictionary.java index 05701c9..213b548 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellDictionary.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/ISpellDictionary.java @@ -19,11 +19,12 @@ import java.util.Set; * @since 3.0 */ public interface ISpellDictionary { - + /** * Returns whether this dictionary accepts new words. * - * @return true if this dictionary accepts new words, false otherwise + * @return true if this dictionary accepts new words, + * false otherwise */ public boolean acceptsWords(); @@ -31,7 +32,7 @@ public interface ISpellDictionary { * Externalizes the specified word. * * @param word - * The word to externalize in the dictionary + * The word to externalize in the dictionary */ public void addWord(String word); @@ -39,10 +40,10 @@ public interface ISpellDictionary { * Returns the ranked word proposals for an incorrectly spelled word. * * @param word - * The word to retrieve the proposals for + * The word to retrieve the proposals for * @param sentence - * true iff the proposals start a new sentence, - * false otherwise + * true iff the proposals start a new sentence, + * false otherwise * @return Array of ranked word proposals */ public Set getProposals(String word, boolean sentence); @@ -51,9 +52,9 @@ public interface ISpellDictionary { * Is the specified word correctly spelled? * * @param word - * The word to spell-check - * @return true iff this word is correctly spelled, false - * otherwise. + * The word to spell-check + * @return true iff this word is correctly spelled, + * false otherwise. */ public boolean isCorrect(String word); @@ -61,7 +62,7 @@ public interface ISpellDictionary { * Is the dictionary loaded? * * @return true iff it is loaded, false - * otherwise + * otherwise */ public boolean isLoaded();