/*
* Copyright (c) 2000, 2001 Paul Kinnucan
*
* $Revision: 1.2 $
*/
package jde.debugger.command;
import jde.debugger.JDEException;
import jde.debugger.Etc;
import com.sun.jdi.ObjectReference;
import com.sun.jdi.StringReference;
import jde.debugger.Rep;
/**
* 'get_string' command. Returns the value of a string
*
*
* Syntax:
*
* get_string objectID
*
*
* Returns:
*
* (jde-dbo-command-result cmd_id {@link Rep#getStringRep(StringReference, ObjectStore) string-representation})
*
*
* @author Paul Kinnucan
* @version $Revision: 1.2 $
*/
public class GetString extends DebugProcessCommand {
/**
*
* @exception jde.debugger.JDEException
*/
public void doCommand() throws JDEException {
if (args.size() < 1)
throw new JDEException("Insufficient arguments");
Long uniqueID = Etc.safeGetLong(args.remove(0), "object ID");
ObjectReference oRef = proc.getStore().get(uniqueID);
if (oRef == null) {
throw new JDEException("No such object exists");
} else if (!(oRef instanceof StringReference)) {
throw new JDEException("Object is not a string");
}
jde.signalCommandResult(procID, cmdID, Rep.getStringRep((StringReference)oRef,
proc.getStore()));
}
public Object clone() {return new GetString();}
} // Run
/*
* $Log: GetString.java,v $
* Revision 1.2 2001/03/24 05:42:36 paulk
* Updated to reflect reorganization of debugger code.
*
* Revision 1.1 2000/03/03 07:10:29 paulk
* Initial revision.
*
*/
// End of GetString.java