blob: 73d08927f27548038613e0e6cf126cb6cffa9065 [file] [log] [blame]
package org.eclipse.cdt.internal.corext.textmanipulation;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* A source range defines an element's source coordinates relative to
* its source buffer.
* <p>
* This interface is not intended to be implemented by clients.
* </p>
*/
public interface ISourceRange {
/**
* Returns the number of characters of the source code for this element,
* relative to the source buffer in which this element is contained.
*/
int getLength();
/**
* Returns the 0-based index of the first character of the source code for this element,
* relative to the source buffer in which this element is contained.
*/
int getOffset();
}