mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
New final static fields.
This commit is contained in:
parent
3ed422a606
commit
2f2b06a320
1 changed files with 6 additions and 1 deletions
|
@ -6,5 +6,10 @@ import org.eclipse.core.resources.IResource;
|
||||||
* @author sam.robb
|
* @author sam.robb
|
||||||
*/
|
*/
|
||||||
public interface IMarkerGenerator {
|
public interface IMarkerGenerator {
|
||||||
public void addMarker(IResource file, int lineNumber, String errorDesc, int severity, String errorVar);
|
int SEVERITY_INFO = 0;
|
||||||
|
int SEVERITY_WARNING = 1;
|
||||||
|
int SEVERITY_ERROR_RESOURCE = 2;
|
||||||
|
int SEVERITY_ERROR_BUILD = 3;
|
||||||
|
|
||||||
|
void addMarker(IResource file, int lineNumber, String errorDesc, int severity, String errorVar);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue