1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / spelling / HtmlTagDictionary.java
index 5e8907f..617f537 100644 (file)
@@ -16,23 +16,23 @@ import java.net.URL;
 import net.sourceforge.phpdt.internal.ui.text.phpdoc.IHtmlTagConstants;
 import net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary;
 
-
 /**
  * Dictionary for html tags.
  * 
  * @since 3.0
  */
-public class HtmlTagDictionary extends AbstractSpellDictionary implements IHtmlTagConstants {
+public class HtmlTagDictionary extends AbstractSpellDictionary implements
+               IHtmlTagConstants {
 
        /*
-        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.AbstractSpellDictionary#getName()
+        * @see net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary#getName()
         */
        protected final URL getURL() {
                return null;
        }
 
        /*
-        * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellDictionary#isCorrect(java.lang.String)
+        * @see net.sourceforge.phpdt.internal.ui.text.spelling.engine.ISpellDictionary#isCorrect(java.lang.String)
         */
        public boolean isCorrect(final String word) {
 
@@ -43,16 +43,18 @@ public class HtmlTagDictionary extends AbstractSpellDictionary implements IHtmlT
        }
 
        /*
-        * @see org.eclipse.jdt.ui.text.spelling.engine.AbstractSpellDictionary#load(java.net.URL)
+        * @see net.sourceforge.phpdt.ui.text.spelling.engine.AbstractSpellDictionary#load(java.net.URL)
         */
        protected boolean load(final URL url) {
 
                unload();
 
-               for (int index= 0; index < HTML_GENERAL_TAGS.length; index++) {
+               for (int index = 0; index < HTML_GENERAL_TAGS.length; index++) {
 
-                       hashWord(HTML_TAG_PREFIX + HTML_GENERAL_TAGS[index] + HTML_TAG_POSTFIX);
-                       hashWord(HTML_CLOSE_PREFIX + HTML_GENERAL_TAGS[index] + HTML_TAG_POSTFIX);
+                       hashWord(HTML_TAG_PREFIX + HTML_GENERAL_TAGS[index]
+                                       + HTML_TAG_POSTFIX);
+                       hashWord(HTML_CLOSE_PREFIX + HTML_GENERAL_TAGS[index]
+                                       + HTML_TAG_POSTFIX);
                }
                return true;
        }