/* * Copyright (c) 2000, 2001 Paul Kinnucan * * $Revision: 1.1 $ */ package jde.debugger.command; import jde.debugger.JDEException; /** * List all threads. 'get_threads' command. *

* * Syntax: *

 * get_threads
 * 
* * Returns: *
 * (jde-dbo-command-result cmd_id {@link #getAllThreadsInformation thread-info})
 * 
* * Comments: * * * @author Paul Kinnucan * @version $Revision: 1.1 $ * */ public class GetThreads extends DebugProcessCommand { /** * * @exception jde.debugger.JDEException */ public void doCommand() throws JDEException { jde.signalCommandResult(procID, cmdID, proc.getAllThreadsInformation()); } public Object clone() {return new GetThreads();} } // GetThreads /* * $Log: GetThreads.java,v $ * Revision 1.1 2001/03/24 13:35:25 paulk * Initial revision. * * */ // End of GetThreads.java