]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.simulation.ui/src/org/simantics/simulation/ui/e4/ExperimentListener.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.simulation.ui / src / org / simantics / simulation / ui / e4 / ExperimentListener.java
index 0e857c67bf82ab6556bcfe5c844c1e30ffce83e7..4573b0c822c8194a1e072f0185049c12412cebc0 100644 (file)
@@ -1,51 +1,51 @@
-/*******************************************************************************\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.ui.e4;\r
-\r
-import org.eclipse.e4.core.services.events.IEventBroker;\r
-import org.eclipse.e4.ui.internal.workbench.E4Workbench;\r
-import org.eclipse.ui.PlatformUI;\r
-import org.simantics.simulation.SimulationEvents;\r
-import org.simantics.simulation.experiment.ExperimentState;\r
-import org.simantics.simulation.experiment.IExperimentListener;\r
-\r
-public class ExperimentListener implements IExperimentListener {\r
-\r
-    private IEventBroker eventBroker;\r
-    \r
-    public ExperimentListener() {\r
-        eventBroker = E4Workbench.getServiceContext().get(IEventBroker.class);\r
-    }\r
-\r
-    @Override\r
-    public void stateChanged(final ExperimentState state) {\r
-        \r
-        if(!PlatformUI.isWorkbenchRunning()) return;   \r
-        \r
-        PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {\r
-\r
-            @Override\r
-            public void run() {\r
-               switch(state) {\r
-                case RUNNING:\r
-                    eventBroker.post(SimulationEvents.TOPIC_STATE_RUNNING, true);\r
-                    break;\r
-                case STOPPED:\r
-                default:\r
-                    eventBroker.post(SimulationEvents.TOPIC_STATE_STOPPED, false);\r
-                    break;\r
-                }\r
-            }\r
-        });\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.ui.e4;
+
+import org.eclipse.e4.core.services.events.IEventBroker;
+import org.eclipse.e4.ui.internal.workbench.E4Workbench;
+import org.eclipse.ui.PlatformUI;
+import org.simantics.simulation.SimulationEvents;
+import org.simantics.simulation.experiment.ExperimentState;
+import org.simantics.simulation.experiment.IExperimentListener;
+
+public class ExperimentListener implements IExperimentListener {
+
+    private IEventBroker eventBroker;
+    
+    public ExperimentListener() {
+        eventBroker = E4Workbench.getServiceContext().get(IEventBroker.class);
+    }
+
+    @Override
+    public void stateChanged(final ExperimentState state) {
+        
+        if(!PlatformUI.isWorkbenchRunning()) return;   
+        
+        PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
+
+            @Override
+            public void run() {
+               switch(state) {
+                case RUNNING:
+                    eventBroker.post(SimulationEvents.TOPIC_STATE_RUNNING, true);
+                    break;
+                case STOPPED:
+                default:
+                    eventBroker.post(SimulationEvents.TOPIC_STATE_STOPPED, false);
+                    break;
+                }
+            }
+        });
+    }
+
+}