1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 14:12:10 +02:00

Additional documentation

This commit is contained in:
John Cortell 2010-03-17 22:37:04 +00:00
parent d1446de73e
commit b32ebda2f8
3 changed files with 22 additions and 5 deletions

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2000, 2007 QNX Software Systems and others. * Copyright (c) 2000, 2010 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -13,6 +13,12 @@
package org.eclipse.cdt.dsf.mi.service.command.output; package org.eclipse.cdt.dsf.mi.service.command.output;
/** /**
* Represents an asynchronous OOB record from gdb that notifies the client of
* state changes on the target (stopped, started, etc).
*
* <p>
* All such records are prefixed by *.
*
* @see MIAsyncRecord * @see MIAsyncRecord
*/ */
public class MIExecAsyncOutput extends MIAsyncRecord { public class MIExecAsyncOutput extends MIAsyncRecord {

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2000, 2007 QNX Software Systems and others. * Copyright (c) 2000, 2010 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -12,8 +12,14 @@
package org.eclipse.cdt.dsf.mi.service.command.output; package org.eclipse.cdt.dsf.mi.service.command.output;
/** /**
* Represents an asynchronous OOB record from gdb that provides supplementary,
* important information that is likely of interest to the client, e.g.,
* notification that a new breakpoint has been created.
*
* <p>
* All such output is prefixed by `='.
*
* @see MIAsyncRecord * @see MIAsyncRecord
*/ */
public class MINotifyAsyncOutput extends MIAsyncRecord { public class MINotifyAsyncOutput extends MIAsyncRecord {

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2000, 2007 QNX Software Systems and others. * Copyright (c) 2000, 2010 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -12,8 +12,13 @@
package org.eclipse.cdt.dsf.mi.service.command.output; package org.eclipse.cdt.dsf.mi.service.command.output;
/** /**
* Represents an asynchronous OOB record from gdb that provides status on an
* ongoing time consuming operation.
*
* <p>
* All such output is prefixed by `+'.
*
* @see MIAsyncRecord * @see MIAsyncRecord
*/ */
public class MIStatusAsyncOutput extends MIAsyncRecord { public class MIStatusAsyncOutput extends MIAsyncRecord {