A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / spelling / engine / ISpellDictionary.java
index 05701c9..213b548 100644 (file)
@@ -19,11 +19,12 @@ import java.util.Set;
  * @since 3.0
  */
 public interface ISpellDictionary {
-       
+
        /**
         * Returns whether this dictionary accepts new words.
         * 
-        * @return <code>true</code> if this dictionary accepts new words, <code>false</code> otherwise
+        * @return <code>true</code> if this dictionary accepts new words,
+        *         <code>false</code> 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
-        *                   <code>true</code> iff the proposals start a new sentence,
-        *                   <code>false</code> otherwise
+        *            <code>true</code> iff the proposals start a new sentence,
+        *            <code>false</code> 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 <code>true</code> iff this word is correctly spelled, <code>false</code>
-        *               otherwise.
+        *            The word to spell-check
+        * @return <code>true</code> iff this word is correctly spelled,
+        *         <code>false</code> otherwise.
         */
        public boolean isCorrect(String word);
 
@@ -61,7 +62,7 @@ public interface ISpellDictionary {
         * Is the dictionary loaded?
         * 
         * @return <code>true</code> iff it is loaded, <code>false</code>
-        *               otherwise
+        *         otherwise
         */
        public boolean isLoaded();