blob: 41229278db5341983509c07dc0132febdb5960fc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.text.spelling;
import java.net.URL;
import org.eclipse.jdt.internal.ui.text.spelling.engine.AbstractSpellDictionary;
import org.eclipse.jdt.internal.ui.text.javadoc.IJavaDocTagConstants;
/**
* Dictionary for Javadoc tags.
*
* @since 3.0
*/
public class JavaDocTagDictionary extends AbstractSpellDictionary implements IJavaDocTagConstants {
/*
* @see org.eclipse.jdt.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)
*/
public boolean isCorrect(final String word) {
if (word.charAt(0) == JAVADOC_TAG_PREFIX)
return super.isCorrect(word);
return false;
}
/*
* @see org.eclipse.jdt.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++)
hashWord(JAVADOC_LINK_TAGS[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++)
hashWord(JAVADOC_PARAM_TAGS[index]);
return true;
}
}