mirror of https://github.com/sbt/sbt.git
Extend reporter to be used by the IDE.
This commit is contained in:
parent
b65a7078f1
commit
2e8fdbdf05
|
|
@ -0,0 +1,10 @@
|
|||
/* 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);
|
||||
}
|
||||
Loading…
Reference in New Issue