]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.simulation/src/org/simantics/simulation/project/ProxyExperimentActivationListener.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.simulation / src / org / simantics / simulation / project / ProxyExperimentActivationListener.java
index aeec7606b323ef897c9741917210b88dfc73537e..493af9d01f263bfa9400a5c082d115148b851ba8 100644 (file)
@@ -1,49 +1,49 @@
-/*******************************************************************************\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.project;\r
-\r
-import org.eclipse.core.runtime.IProgressMonitor;\r
-import org.eclipse.core.runtime.IStatus;\r
-import org.simantics.simulation.experiment.IExperiment;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class ProxyExperimentActivationListener implements IExperimentActivationListener {\r
-\r
-    protected IExperimentActivationListener proxy;\r
-\r
-    public ProxyExperimentActivationListener(IExperimentActivationListener proxy) {\r
-        this.proxy = proxy;\r
-    }\r
-\r
-    @Override\r
-    public void onMessage(IStatus message) {\r
-        proxy.onMessage(message);\r
-    }\r
-\r
-    @Override\r
-    public void onExperimentActivated(IExperiment experiment) {\r
-        proxy.onExperimentActivated(experiment);\r
-    }\r
-\r
-    @Override\r
-    public void onFailure(Throwable e) {\r
-        proxy.onFailure(e);\r
-    }\r
-\r
-    @Override\r
-    public IProgressMonitor getProgressMonitor() {\r
-        return proxy.getProgressMonitor();\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.simulation.project;
+
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.IStatus;
+import org.simantics.simulation.experiment.IExperiment;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class ProxyExperimentActivationListener implements IExperimentActivationListener {
+
+    protected IExperimentActivationListener proxy;
+
+    public ProxyExperimentActivationListener(IExperimentActivationListener proxy) {
+        this.proxy = proxy;
+    }
+
+    @Override
+    public void onMessage(IStatus message) {
+        proxy.onMessage(message);
+    }
+
+    @Override
+    public void onExperimentActivated(IExperiment experiment) {
+        proxy.onExperimentActivated(experiment);
+    }
+
+    @Override
+    public void onFailure(Throwable e) {
+        proxy.onFailure(e);
+    }
+
+    @Override
+    public IProgressMonitor getProgressMonitor() {
+        return proxy.getProgressMonitor();
+    }
+
+}