X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.simulation.ui%2Fsrc%2Forg%2Fsimantics%2Fsimulation%2Fui%2Fe4%2FExperimentListener.java;h=1f6bdb431448646d35d89ead90888dcd1c8625ca;hb=f37ba060464d2230f86c6786572d33026800eedc;hp=0e857c67bf82ab6556bcfe5c844c1e30ffce83e7;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.simulation.ui/src/org/simantics/simulation/ui/e4/ExperimentListener.java b/bundles/org.simantics.simulation.ui/src/org/simantics/simulation/ui/e4/ExperimentListener.java index 0e857c67b..1f6bdb431 100644 --- a/bundles/org.simantics.simulation.ui/src/org/simantics/simulation/ui/e4/ExperimentListener.java +++ b/bundles/org.simantics.simulation.ui/src/org/simantics/simulation/ui/e4/ExperimentListener.java @@ -1,51 +1,48 @@ -/******************************************************************************* - * 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; - } - } - }); - } - -} +/******************************************************************************* + * Copyright (c) 2007, 2019 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 + * Semantum Oy - gitlab #384 + *******************************************************************************/ +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(() -> { + switch (state) { + case RUNNING: + eventBroker.post(SimulationEvents.TOPIC_STATE_RUNNING, true); + break; + case STOPPED: + default: + eventBroker.post(SimulationEvents.TOPIC_STATE_STOPPED, false); + break; + } + }); + } + +}