blob: 7da3180c894bae7014cb00cc44b9615149947a9a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.text.contentassist;
/**
* Extension interface for <code>IContextInformation</code>.
* Adds the functionality of freely positionable context information.
*
* @since 2.0
*/
public interface IContextInformationExtension {
/**
* Returns the start offset of the range for which this context information is valid.
*
* @return the start offset of the range for which this context information is valid
*/
int getContextInformationPosition();
}