blob: 6cfb9e3cd1d4b7c3e3f6707dd468ef741bee7961 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009 Metascape, LLC.
* 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:
* Metascape - Initial API and Implementation
*
* </copyright>
*
*/
package org.eclipse.amp.axf.ide.handlers;
import org.eclipse.amp.axf.core.EngineControl;
/**
* Stop the simulation.
*
* @author jonas.ruettimann
*/
public class StopHandler extends ModelRunHandler {
public StopHandler() {
super(EngineControl.STOP);
}
}