/* * Copyright (c) 2000, 2001 Paul Kinnucan * * $Revision: 1.1 $ */ package jde.debugger.command; import jde.debugger.JDEException; import jde.debugger.Etc; /** * 'clear' command. Clears a breakpoint, watchpoint or an exception * intercept *

* * Syntax: *

 * clear specID
 * 
* * Comments: * * * @author Paul Kinnucan * @version $Revision: 1.1 $ * */ public class Clear extends DebugProcessCommand { /** * * @exception jde.debugger.JDEException */ public void doCommand() throws JDEException { if (args.size() < 1) throw new JDEException("Insufficient arguments"); Long specID = Etc.safeGetLong(args.remove(0), "spec ID"); proc.getEventRequestSpecs().removeSpec(specID); jde.signalCommandResult(procID, cmdID); } public Object clone() {return new Clear();} } // Clear /* * $Log: Clear.java,v $ * Revision 1.1 2001/03/24 05:48:40 paulk * Initial version. * * */ // End of Clear.java