package jde.debugger.command;
import jde.debugger.JDEException;
/**
*
*
* Runs an application.
*
*
* Syntax:
*
* run
*
*
* @author Paul Kinnucan
* @version $Revision: 1.3 $
*
* Copyright (c) 2000, 2001, 2003 Paul Kinnucan
*
*/
public class Run extends DebugProcessCommand {
/**
*
* @exception jde.debugger.JDEException
*/
public void doCommand() throws JDEException {
try {
m_debugger.getVM().resume();
} catch (Exception ex) {
throw new JDEException("Unspecified Error occurred: "+ex.toString());
}
m_debugger.signalCommandResult(m_cmdID, null, CMD_OK);
}
public Object clone() {return new Run();}
} // Run
/*
* $Log: Run.java,v $
* Revision 1.3 2003/01/15 05:56:26 paulk
* Add Petter Mahlen's changes.
*
* Revision 1.2 2001/03/24 05:42:37 paulk
* Updated to reflect reorganization of debugger code.
*
* Revision 1.1 2000/01/31 12:48:02 paulk
* Start or continue application.
*
*/
// End of Run.java