Class clazz = Class.forName("nexj.core.scripting.debugger.server.GenericDebugSessionManager");
Object debugSessionManager = clazz.getMethod("getInstance", null).invoke(null, null);
clazz.getMethod("suspendOnStartup", new Class[]{PCodeLocation.class})
.invoke(debugSessionManager, new Object[]{new PCodeLocation(nextFunction, 0)});
}
catch(Throwable t)
{
ObjUtil.rethrow(t);
}