1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

New file for command jump.

This commit is contained in:
Alain Magloire 2003-02-04 19:13:41 +00:00
parent 5af637019d
commit 10c8f02f6c

View file

@ -0,0 +1,21 @@
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.command;
/**
*
* jump LINESPEC
*
*/
public class MIJump extends CLICommand {
public MIJump(String loc) {
super("jump " + loc);
}
}