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/core/EvalTrigger.java')
-rw-r--r--plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/core/EvalTrigger.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/core/EvalTrigger.java b/plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/core/EvalTrigger.java
new file mode 100644
index 00000000..fb965434
--- /dev/null
+++ b/plugins/org.eclipse.m2t.common.recipe/src/org/eclipse/m2t/common/recipe/core/EvalTrigger.java
@@ -0,0 +1,22 @@
+/*
+ * <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.core;
+
+public class EvalTrigger {
+
+ public static final int ON_REQUEST = 0;
+ public static final int ON_CHANGE = 1;
+
+}

Back to the top