mirror of https://github.com/sbt/sbt.git
11 lines
245 B
Java
11 lines
245 B
Java
|
|
/* sbt -- Simple Build Tool
|
||
|
|
* Copyright 2012 Eugene Vigdorchik
|
||
|
|
*/
|
||
|
|
package xsbti;
|
||
|
|
|
||
|
|
/** An addition to standard reporter. Used by the IDE. */
|
||
|
|
public interface ExtendedReporter extends Reporter
|
||
|
|
{
|
||
|
|
public void comment(Position pos, String msg);
|
||
|
|
}
|