1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-17 13:15:44 +02:00

- moved marked const to interface

This commit is contained in:
Alena Laskavaia 2009-09-23 18:31:11 +00:00
parent 0bba84bfef
commit c59b224a64
2 changed files with 2 additions and 1 deletions

View file

@ -16,6 +16,7 @@ package org.eclipse.cdt.codan.core.model;
* *
*/ */
public interface IProblemReporter { public interface IProblemReporter {
public static final String GENERIC_CODE_ANALYSIS_MARKER_TYPE = "org.eclipse.cdt.codan.core.codanProblem";
/** /**
* Report a problem with "problemId" id on location determined by "loc", * Report a problem with "problemId" id on location determined by "loc",
* using problem specific error message customised by args. * using problem specific error message customised by args.

View file

@ -23,7 +23,7 @@ import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.CoreException;
public class CodanMarkerProblemReporter implements IProblemReporter { public class CodanMarkerProblemReporter implements IProblemReporter {
public static final String GENERIC_CODE_ANALYSIS_MARKER_TYPE = "org.eclipse.cdt.codan.core.codanProblem";
/* /*
* (non-Javadoc) * (non-Javadoc)