move modules around.

This commit is contained in:
Eugene Yokota
2015-08-20 00:59:57 -04:00
parent 8b4e0486a8
commit 871b4f4eef
99 changed files with 10 additions and 12 deletions
@@ -0,0 +1,18 @@
/* sbt -- Simple Build Tool
* Copyright 2008, 2009, 2010 Mark Harrah
*/
package xsbti;
public interface Position
{
Maybe<Integer> line();
String lineContent();
Maybe<Integer> offset();
// pointer to the column position of the error/warning
Maybe<Integer> pointer();
Maybe<String> pointerSpace();
Maybe<String> sourcePath();
Maybe<java.io.File> sourceFile();
}