1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 23:35:48 +02:00
This commit is contained in:
Alena Laskavaia 2010-06-03 01:07:59 +00:00
parent 47c6380964
commit 164cdd8a6e

View file

@ -60,12 +60,17 @@ public class CodanMarkerProblemReporter implements IProblemReporterPersistent {
loc.getStartingChar(), loc.getEndingChar(), message); loc.getStartingChar(), loc.getEndingChar(), message);
} }
/* /**
* (non-Javadoc) * @param id - problem id
* * @param markerType - marker id
* @see * @param severity - marker severity
* org.eclipse.cdt.codan.core.model.IProblemReporter#reportProblem(java. * @param file - resource
* lang.String, org.eclipse.core.resources.IFile, int, java.lang.String) * @param lineNumber - line number for error
* @param startChar - start char (offset in charts from the begging of the
* document)
* @param endChar - end char (offset in charts from the begging of the
* document, exclusive)
* @param message - marker message
*/ */
public void reportProblem(String id, String markerType, int severity, public void reportProblem(String id, String markerType, int severity,
IResource file, int lineNumber, int startChar, int endChar, IResource file, int lineNumber, int startChar, int endChar,