blob: bbcced4edabc04eee89868020396c039b1d04bb4 [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;
/**
* Pause the simulation.
*
* @author jonas.ruettimann
*/
public class PauseHandler extends ModelRunHandler {
public PauseHandler() {
super(EngineControl.PAUSE);
}
}