Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/eval/CheckEvaluationListener.java')
-rw-r--r--plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/eval/CheckEvaluationListener.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/eval/CheckEvaluationListener.java b/plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/eval/CheckEvaluationListener.java
new file mode 100644
index 00000000..ffdbbf92
--- /dev/null
+++ b/plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/eval/CheckEvaluationListener.java
@@ -0,0 +1,23 @@
+/*
+ * <copyright>
+ *
+ * Copyright (c) 2005-2006 Markus Voelter and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Markus Voelter - Initial API and implementation
+ *
+ * </copyright>
+ */
+package org.eclipse.m2t.common.recipe.eval;
+
+import org.eclipse.m2t.common.recipe.core.Check;
+
+public interface CheckEvaluationListener {
+
+ public void evaluated( Check c, boolean actuallyChecked );
+
+}

Back to the top