All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xsbti.Position Maven / Gradle / Ivy

There is a newer version: 0.13.15
Show newest version
/* sbt -- Simple Build Tool
 * Copyright 2008, 2009, 2010  Mark Harrah
 */
package xsbti;

public interface Position
{
	Maybe line();
	String lineContent();
	Maybe offset();

	// pointer to the column position of the error/warning
	Maybe pointer();
	Maybe pointerSpace();

	Maybe sourcePath();
	Maybe sourceFile();	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy