Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ICModelMarker.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ICModelMarker.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ICModelMarker.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ICModelMarker.java
deleted file mode 100644
index 11d8fe88c22..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ICModelMarker.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package org.eclipse.cdt.core.model;
-
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- */
-
-import org.eclipse.cdt.core.CCorePlugin;
-
-
-/**
- * Markers used by the C model.
- * <p>
- * This interface declares constants only; it is not intended to be implemented
- * or extended.
- * </p>
- */
-public interface ICModelMarker {
-
- /**
- * C model problem marker type (value <code>"org.eclipse.cdt.core.problem"</code>).
- * This can be used to recognize those markers in the workspace that flag problems
- * detected by the C compilers.
- */
- public static final String C_MODEL_PROBLEM_MARKER = CCorePlugin.PLUGIN_ID + ".problem"; //$NON-NLS-1$
-
- /**
- * C model extension to the marker problem markers which may hold a hint on
- * the variable name that caused the error. Used by the ui to highlight the variable
- * itself if it can be found.
- */
- public static final String C_MODEL_MARKER_VARIABLE = "problem.variable"; //$NON-NLS-1$
-
- /**
- * C model task marker type (value <code>"org.eclipse.cdt.core.task"</code>).
- * This can be used to recognize task markers in the workspace that correspond to tasks
- * specified in C/C++ source comments and detected during translation (for example, 'TO-DO: ...').
- * Tasks are identified by a task tag, which can be customized through <code>CCorePlugin</code>
- * option <code>"org.eclipse.cdt.core.translation.taskTag"</code>.
- */
- public static final String TASK_MARKER = CCorePlugin.PLUGIN_ID + ".task"; //$NON-NLS-1$
-}
-
-

Back to the top