Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Davis2013-04-09 22:03:39 +0000
committerMatthew Davis2013-04-09 22:03:39 +0000
commite0198b6c843721938693ab3ef82038fd5b917f46 (patch)
tree32911df97c45daab37c66b9f16c215448b795a22
parentc108ff29c5e99371138f1c0167fa9657e00c7328 (diff)
downloadorg.eclipse.stem-e0198b6c843721938693ab3ef82038fd5b917f46.tar.gz
org.eclipse.stem-e0198b6c843721938693ab3ef82038fd5b917f46.tar.xz
org.eclipse.stem-e0198b6c843721938693ab3ef82038fd5b917f46.zip
Adding a job family lock for STEM simulations to join on the job manager.
git-svn-id: http://dev.eclipse.org/svnroot/technology/org.eclipse.stem/trunk@3695 92a21009-5b66-0410-b83a-dc787c41c6e9
-rw-r--r--core/org.eclipse.stem.core/src/org/eclipse/stem/core/CorePlugin.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/org.eclipse.stem.core/src/org/eclipse/stem/core/CorePlugin.java b/core/org.eclipse.stem.core/src/org/eclipse/stem/core/CorePlugin.java
index 0b8ef9d09..213436227 100644
--- a/core/org.eclipse.stem.core/src/org/eclipse/stem/core/CorePlugin.java
+++ b/core/org.eclipse.stem.core/src/org/eclipse/stem/core/CorePlugin.java
@@ -25,6 +25,11 @@ import org.osgi.framework.BundleContext;
public class CorePlugin extends Plugin {
/**
+ * Job manager lock object that represents the family of STEM Simulation jobs
+ */
+ public static final Object FAMILY_STEM_SIMULATION = new Object();
+
+ /**
* The plug-in ID
*/
public static final String PLUGIN_ID = "org.eclipse.stem.core";

Back to the top