blob: 941ddbcc29b8ba25aab139c6386ed2951920a65b [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.command;
import org.eclipse.cdt.debug.mi.core.output.MIOutput;
import org.eclipse.cdt.debug.mi.core.output.MIResultRecord;
/**
*
* jump LINESPEC
*
*/
public class MIJump extends CLICommand {
MIOutput out;
public MIJump(String loc) {
super("jump " + loc);
}
/**
* This is a CLI command contraly to
* the -exec-continue or -exec-run
* it does not return so we have to fake
* a return value. We return "^running"
*/
public MIOutput getMIOutput() {
if (out == null) {
out = new MIOutput();
MIResultRecord rr = new MIResultRecord();
rr.setToken(getToken());
rr.setResultClass(MIResultRecord.RUNNING);
out.setMIResultRecord(rr);
}
return out;
}
}