1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

From Sam Robb:

Adds an interface to disasociated the addMarker() from
the builder class.
This commit is contained in:
Alain Magloire 2002-10-03 01:56:00 +00:00
parent 0298ec1a16
commit 44ebc59862

View file

@ -0,0 +1,10 @@
package org.eclipse.cdt.core;
import org.eclipse.core.resources.IResource;
/**
* @author sam.robb
*/
public interface IMarkerGenerator {
public void addMarker(IResource file, int lineNumber, String errorDesc, int severity, String errorVar);
}