mirror of https://github.com/sbt/sbt.git
11 lines
182 B
Java
11 lines
182 B
Java
|
|
/* sbt -- Simple Build Tool
|
||
|
|
* Copyright 2008, 2009, 2010 Mark Harrah
|
||
|
|
*/
|
||
|
|
package xsbti;
|
||
|
|
|
||
|
|
public interface Problem
|
||
|
|
{
|
||
|
|
Severity severity();
|
||
|
|
String message();
|
||
|
|
Position position();
|
||
|
|
}
|