mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 13:25:45 +02:00
2004-09-07 Alain Magloire
Remove ICDIBreakpointManager.java Remove ICDICatchEvent/ICDICatchpoint add ICDIExceptionpoint * ICDISession.java * CDIDebugModel.java * CDebugTarget.java * ICDIExceptionpoint.java
This commit is contained in:
parent
cbf2f0c899
commit
ead5f8c975
4 changed files with 26 additions and 52 deletions
|
@ -1,8 +1,12 @@
|
|||
2004-09-07 Alain Magloire
|
||||
Remove ICDIBreakpointManager.java
|
||||
Remove ICDICatchEvent/ICDICatchpoint
|
||||
add ICDIExceptionpoint
|
||||
|
||||
* ICDISession.java
|
||||
* CDIDebugModel.java
|
||||
* CDebugTarget.java
|
||||
* ICDIExceptionpoint.java
|
||||
|
||||
2004-09-07 Mikhail Khodjaiants
|
||||
Moved to the new breakpoint management API.
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2000, 2004 QNX Software Systems and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Common Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/cpl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* QNX Software Systems - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.debug.core.cdi;
|
||||
|
||||
/**
|
||||
*
|
||||
* Represents a program event supported by catchpoints.
|
||||
*
|
||||
* @since Jul 9, 2002
|
||||
*/
|
||||
public interface ICDICatchEvent extends ICDISessionObject {
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2000, 2004 QNX Software Systems and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Common Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/cpl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* QNX Software Systems - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.debug.core.cdi.model;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||
import org.eclipse.cdt.debug.core.cdi.ICDICatchEvent;
|
||||
|
||||
/**
|
||||
*
|
||||
* Represents a catchpoint.
|
||||
*
|
||||
* @since Jul 9, 2002
|
||||
*/
|
||||
public interface ICDICatchpoint extends ICDIBreakpoint {
|
||||
/**
|
||||
* Returns the catch event for this catchpoint.
|
||||
*
|
||||
* @return the catch event for this catchpoint
|
||||
* @throws CDIException if this method fails. Reasons include:
|
||||
*/
|
||||
ICDICatchEvent getEvent() throws CDIException;
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
/**********************************************************************
|
||||
* Copyright (c) 2002,2003,2004 QNX Software Systems and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Common Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/cpl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* QNX Software Systems - Initial API and implementation
|
||||
***********************************************************************/
|
||||
|
||||
package org.eclipse.cdt.debug.core.cdi.model;
|
||||
|
||||
/**
|
||||
* ICDIExceptionpoint
|
||||
*/
|
||||
public interface ICDIExceptionpoint extends ICDIBreakpoint {
|
||||
|
||||
boolean isStopOnThrow();
|
||||
|
||||
boolean isStopOnCatch();
|
||||
}
|
Loading…
Add table
Reference in a new issue