X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java index 891d87b..94ed16b 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java @@ -16,23 +16,23 @@ import java.net.URL; import net.sourceforge.phpdt.internal.ui.text.phpdoc.IJavaDocTagConstants; import net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary; - /** * Dictionary for Javadoc tags. * * @since 3.0 */ -public class JavaDocTagDictionary extends AbstractSpellDictionary implements IJavaDocTagConstants { +public class JavaDocTagDictionary extends AbstractSpellDictionary implements + IJavaDocTagConstants { /* - * @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,19 +43,19 @@ public class JavaDocTagDictionary extends AbstractSpellDictionary implements IJa } /* - * @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 < JAVADOC_LINK_TAGS.length; index++) + for (int index = 0; index < JAVADOC_LINK_TAGS.length; index++) hashWord(JAVADOC_LINK_TAGS[index]); - for (int index= 0; index < JAVADOC_ROOT_TAGS.length; index++) + for (int index = 0; index < JAVADOC_ROOT_TAGS.length; index++) hashWord(JAVADOC_ROOT_TAGS[index]); - for (int index= 0; index < JAVADOC_PARAM_TAGS.length; index++) + for (int index = 0; index < JAVADOC_PARAM_TAGS.length; index++) hashWord(JAVADOC_PARAM_TAGS[index]); return true;