X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java index 92b1ef5..867690b 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java @@ -26,21 +26,22 @@ import org.eclipse.core.runtime.Preferences.PropertyChangeEvent; * * @since 3.0 */ -public class TaskTagDictionary extends AbstractSpellDictionary implements IPropertyChangeListener { +public class TaskTagDictionary extends AbstractSpellDictionary implements + IPropertyChangeListener { /* - * @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.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) { - final Plugin plugin= JavaCore.getPlugin(); + final Plugin plugin = JavaCore.getPlugin(); if (plugin != null) { plugin.getPluginPreferences().addPropertyChangeListener(this); @@ -59,11 +60,11 @@ public class TaskTagDictionary extends AbstractSpellDictionary implements IPrope } /* - * @see org.eclipse.jdt.ui.text.spelling.engine.ISpellDictionary#unload() + * @see net.sourceforge.phpdt.ui.text.spelling.engine.ISpellDictionary#unload() */ public void unload() { - final Plugin plugin= JavaCore.getPlugin(); + final Plugin plugin = JavaCore.getPlugin(); if (plugin != null) plugin.getPluginPreferences().removePropertyChangeListener(this); @@ -75,12 +76,12 @@ public class TaskTagDictionary extends AbstractSpellDictionary implements IPrope */ protected boolean updateTaskTags() { - final String tags= JavaCore.getOption(JavaCore.COMPILER_TASK_TAGS); + final String tags = JavaCore.getOption(JavaCore.COMPILER_TASK_TAGS); if (tags != null) { unload(); - final StringTokenizer tokenizer= new StringTokenizer(tags, ","); //$NON-NLS-1$ + final StringTokenizer tokenizer = new StringTokenizer(tags, ","); //$NON-NLS-1$ while (tokenizer.hasMoreTokens()) hashWord(tokenizer.nextToken());