]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.simulation/src/org/simantics/simulation/model/ExperimentLoadingCancelled.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.simulation / src / org / simantics / simulation / model / ExperimentLoadingCancelled.java
diff --git a/bundles/org.simantics.simulation/src/org/simantics/simulation/model/ExperimentLoadingCancelled.java b/bundles/org.simantics.simulation/src/org/simantics/simulation/model/ExperimentLoadingCancelled.java
new file mode 100644 (file)
index 0000000..3116647
--- /dev/null
@@ -0,0 +1,50 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
+ * in Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.simulation.model;\r
+\r
+/**\r
+ * Used in\r
+ * {@link IModel#loadExperiment(org.simantics.db.ReadGraph, org.simantics.db.Resource, org.simantics.simulation.project.IExperimentActivationListener)}\r
+ * to indicate that experiment activation has been cancelled in a controlled\r
+ * manner and that no errors should be issued to the user.\r
+ * \r
+ * <p>\r
+ * It is possible to provide a {@link Runnable} action through\r
+ * {@link #ExperimentLoadingCancelled(String, Runnable)} that will be executed.\r
+ * \r
+ * @author Tuukka Lehtonen\r
+ */\r
+public class ExperimentLoadingCancelled extends ExperimentLoadingFailed {\r
+\r
+    private static final long serialVersionUID = -1465266288034655364L;\r
+\r
+    public ExperimentLoadingCancelled() {\r
+        super();\r
+    }\r
+\r
+    public ExperimentLoadingCancelled(String arg0, Throwable arg1) {\r
+        super(arg0, arg1);\r
+    }\r
+\r
+    public ExperimentLoadingCancelled(String arg0) {\r
+        super(arg0);\r
+    }\r
+\r
+    public ExperimentLoadingCancelled(String arg0, Runnable helperAction) {\r
+        super(arg0, helperAction);\r
+    }\r
+\r
+    public ExperimentLoadingCancelled(Throwable arg0) {\r
+        super(arg0);\r
+    }\r
+\r
+}\r