blob: f6510a135fd233e612439a02b3e88f84de124976 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.IHtmlTagConstants;
/**
* Dictionary for html tags.
*
* @since 3.0
*/
public class HtmlTagDictionary extends AbstractSpellDictionary {
/*
* @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) == IHtmlTagConstants.HTML_TAG_PREFIX)
return super.isCorrect(word);
return false;
}
/*
* @see org.eclipse.jdt.ui.text.spelling.engine.AbstractSpellDictionary#load(java.net.URL)
*/
protected synchronized boolean load(final URL url) {
unload();
for (int index= 0; index < IHtmlTagConstants.HTML_GENERAL_TAGS.length; index++) {
hashWord(IHtmlTagConstants.HTML_TAG_PREFIX + IHtmlTagConstants.HTML_GENERAL_TAGS[index] + IHtmlTagConstants.HTML_TAG_POSTFIX);
hashWord(IHtmlTagConstants.HTML_CLOSE_PREFIX + IHtmlTagConstants.HTML_GENERAL_TAGS[index] + IHtmlTagConstants.HTML_TAG_POSTFIX);
}
return true;
}
/*
* @see org.eclipse.jdt.internal.ui.text.spelling.engine.AbstractSpellDictionary#stripNonLetters(java.lang.String)
* @since 3.3
*/
protected String stripNonLetters(String word) {
return word;
}
}