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 / HtmlTagDictionary.java
index 2b2ba07..617f537 100644 (file)
@@ -16,13 +16,13 @@ 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 net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary#getName()
@@ -49,10 +49,12 @@ public class HtmlTagDictionary extends AbstractSpellDictionary implements IHtmlT
 
                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;
        }