blob: 2c51a4afcc41dc242b1bd444c9ffe364c1a875dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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();
}