/* 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(); }