Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/CheckerLaunchMode.java')
-rw-r--r--codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/CheckerLaunchMode.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/CheckerLaunchMode.java b/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/CheckerLaunchMode.java
index 677bb75051c..660cceb3576 100644
--- a/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/CheckerLaunchMode.java
+++ b/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/CheckerLaunchMode.java
@@ -31,8 +31,13 @@ public enum CheckerLaunchMode {
*/
RUN_ON_INC_BUILD,
/**
- * Checker runs when a file is saved or opened. Checker will not run if the file is an editor
- * with unsaved changes.
+ * Checker runs when a file is opened.
+ * @since 2.1
+ */
+ RUN_ON_FILE_OPEN,
+ /**
+ * Checker runs when a file is saved. Checker will not run if the file is an editor with unsaved
+ * changes.
* @since 2.1
*/
RUN_ON_FILE_SAVE,

Back to the top