]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.simulation.ui/src/org/simantics/simulation/ui/handlers/Step.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.simulation.ui / src / org / simantics / simulation / ui / handlers / Step.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.simulation.ui.handlers;\r
13 \r
14 import java.util.Map;\r
15 \r
16 import org.eclipse.core.commands.AbstractHandler;\r
17 import org.eclipse.core.commands.ExecutionEvent;\r
18 import org.eclipse.core.commands.ExecutionException;\r
19 import org.eclipse.ui.commands.IElementUpdater;\r
20 import org.eclipse.ui.menus.UIElement;\r
21 import org.simantics.simulation.experiment.ExperimentUtil;\r
22 import org.simantics.simulation.ui.preferences.SimulationPreferenceUtil;\r
23 import org.simantics.simulation.ui.preferences.SimulationPreferences;\r
24 \r
25 public class Step extends AbstractHandler implements IElementUpdater {\r
26 \r
27     @Override\r
28     public Object execute(ExecutionEvent event) throws ExecutionException {\r
29         SimulationPreferences prefs = SimulationPreferenceUtil.getPrefs();\r
30         ExperimentUtil.step(prefs.stepDuration);\r
31         return null;\r
32     }\r
33 \r
34     @SuppressWarnings("rawtypes")\r
35     @Override\r
36     public void updateElement(UIElement element, Map parameters) {\r
37         SimulationPreferences prefs = SimulationPreferenceUtil.getPrefs();\r
38         element.setTooltip("Step " + prefs.stepDuration + "s");\r
39     }\r
40 \r
41 }\r