blob: 4a2605eedfe837a89458ff9d05bcdd87f623ff17 [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.util.HashMap;
import java.util.Map;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.content.IContentType;
import org.eclipse.core.runtime.content.IContentTypeManager;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.ui.texteditor.spelling.ISpellingEngine;
import org.eclipse.ui.texteditor.spelling.ISpellingProblemCollector;
import org.eclipse.ui.texteditor.spelling.SpellingContext;
import org.eclipse.jdt.core.JavaCore;
/**
* Default spelling engine.
*
* @since 3.1
*/
public class DefaultSpellingEngine implements ISpellingEngine {
/** Text content type */
private static final IContentType TEXT_CONTENT_TYPE= Platform.getContentTypeManager().getContentType(IContentTypeManager.CT_TEXT);
/** Java source content type */
private static final IContentType JAVA_CONTENT_TYPE= Platform.getContentTypeManager().getContentType(JavaCore.JAVA_SOURCE_CONTENT_TYPE);
/** Java properties content type */
private static final IContentType PROPERTIES_CONTENT_TYPE= Platform.getContentTypeManager().getContentType("org.eclipse.jdt.core.javaProperties"); //$NON-NLS-1$
/** Available spelling engines by content type */
private Map fEngines= new HashMap();
/**
* Initialize concrete engines.
*/
public DefaultSpellingEngine() {
if (JAVA_CONTENT_TYPE != null)
fEngines.put(JAVA_CONTENT_TYPE, new JavaSpellingEngine());
if (PROPERTIES_CONTENT_TYPE != null)
fEngines.put(PROPERTIES_CONTENT_TYPE, new PropertiesFileSpellingEngine());
if (TEXT_CONTENT_TYPE != null)
fEngines.put(TEXT_CONTENT_TYPE, new TextSpellingEngine());
}
/*
* @see org.eclipse.ui.texteditor.spelling.ISpellingEngine#check(org.eclipse.jface.text.IDocument, org.eclipse.jface.text.IRegion[], org.eclipse.ui.texteditor.spelling.SpellingContext, org.eclipse.ui.texteditor.spelling.ISpellingProblemCollector, org.eclipse.core.runtime.IProgressMonitor)
*/
public void check(IDocument document, IRegion[] regions, SpellingContext context, ISpellingProblemCollector collector, IProgressMonitor monitor) {
ISpellingEngine engine= getEngine(context.getContentType());
if (engine == null)
engine= getEngine(TEXT_CONTENT_TYPE);
if (engine != null)
engine.check(document, regions, context, collector, monitor);
}
/**
* Returns a spelling engine for the given content type or
* <code>null</code> if none could be found.
*
* @param contentType the content type
* @return a spelling engine for the given content type or
* <code>null</code> if none could be found
*/
private ISpellingEngine getEngine(IContentType contentType) {
if (contentType == null)
return null;
if (fEngines.containsKey(contentType))
return (ISpellingEngine) fEngines.get(contentType);
return getEngine(contentType.getBaseType());
}
}