17.4.3. The ISourceRange Interface

The ISourceRange interface represents a position in the source code. An example could be line 17 column 3 to line 17 column 10. These are given to plugins to indicate where it is called from or where certain parameters are defined. The plugin can give them back when reporting errors to indicate what code coursed the error.

Seen from the plugin, the interface is empty:

public interface ISourceRange {

}