blob: 3f93af33c1e6968f2e1e97862b0f259ce5a90a24 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.sse.ui.internal.spelling;
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
/**
* <p>Defines an interface for deciding if an offset in an <code>IStructuredModel</code>
* should be spell checked. Created so that content type specific decisions
* could be made as to whether a region should be spell-checked or not.
* This is done using the <code>IAdapterFactory</code> framework.</p>
*/
public interface ISpellcheckDelegate {
/**
* Decide if the <code>offset</code> in <code>model</code> should be spell checked or not.
*
* @param offset decide if this offset in the given <code>model</code> should be spell-checked
* @param model used to decide if the given <code>offset</code> should be spell-checked
* @return <code>true</code> if the given <code>offset</code> in the given <code>model</code>
* should be spell checked, <code>false</code> otherwise.
*/
public boolean shouldSpellcheck(int offset, IStructuredModel model);
}