blob: 8584782ee70bebc93dfdb55c5144fb120f62f7f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2008 IBM Corporation and Others
* 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:
* Kentarou FUKUDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.visualization.lowvision.ui.actions;
import org.eclipse.actf.visualization.lowvision.LowVisionVizPlugin;
import org.eclipse.actf.visualization.lowvision.ui.internal.Messages;
import org.eclipse.actf.visualization.lowvision.ui.internal.PartControlLowVision;
import org.eclipse.jface.action.Action;
public class LowVisionSimulateAction extends Action {
private PartControlLowVision lowVisionCtrl;
public LowVisionSimulateAction(PartControlLowVision lowVisionCtrl) {
setToolTipText(Messages.getString("LowVisionView.Simulate_2")); //$NON-NLS-1$
setImageDescriptor(LowVisionVizPlugin.imageDescriptorFromPlugin(
LowVisionVizPlugin.PLUGIN_ID, "icons/simulation.png"));
setText(Messages.getString("LVSimulationAction.0")); //$NON-NLS-1$
this.lowVisionCtrl = lowVisionCtrl;
}
public void run() {
lowVisionCtrl.setLVParamStatus();
lowVisionCtrl.doSimulate();
}
}