1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 12:55:40 +02:00

New copyright.

This commit is contained in:
Mikhail Khodjaiants 2004-04-30 22:05:37 +00:00
parent 95df2620f0
commit 3fa86e4cce
3 changed files with 37 additions and 25 deletions

View file

@ -1,3 +1,8 @@
2004-04-30 Mikhail Khodjaiants
New copyright.
* IJumpToAddress.java
* IJumpToLine.java
2004-04-27 Mikhail Khodjaiants 2004-04-27 Mikhail Khodjaiants
Moved the "FUNCTION" and "ADDRESS" breakpoint attributes to ICLineBreakpoint. Moved the "FUNCTION" and "ADDRESS" breakpoint attributes to ICLineBreakpoint.
Added support for the Disassembly view. Added support for the Disassembly view.

View file

@ -1,19 +1,22 @@
/* /**********************************************************************
*(c) Copyright QNX Software Systems Ltd. 2002. * Copyright (c) 2004 QNX Software Systems and others.
* All Rights Reserved. * 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.model; package org.eclipse.cdt.debug.core.model;
import org.eclipse.debug.core.DebugException; import org.eclipse.debug.core.DebugException;
/** /**
* Provides the ability to resume a debug target at the given address. * Provides the ability to resume a debug target at the given address.
*
* @since: Feb 5, 2003
*/ */
public interface IJumpToAddress public interface IJumpToAddress {
{
/** /**
* Returns whether this operation is currently available for this element. * Returns whether this operation is currently available for this element.
* *

View file

@ -1,8 +1,13 @@
/* /**********************************************************************
*(c) Copyright QNX Software Systems Ltd. 2002. * Copyright (c) 2004 QNX Software Systems and others.
* All Rights Reserved. * 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.model; package org.eclipse.cdt.debug.core.model;
import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFile;
@ -10,11 +15,9 @@ import org.eclipse.debug.core.DebugException;
/** /**
* Provides the ability to resume a debug target at the given line. * Provides the ability to resume a debug target at the given line.
*
* @since: Feb 5, 2003
*/ */
public interface IJumpToLine public interface IJumpToLine {
{
/** /**
* Returns whether this operation is currently available for this file and line number. * Returns whether this operation is currently available for this file and line number.
* *
@ -25,7 +28,8 @@ public interface IJumpToLine
/** /**
* Causes this element to resume the execution at the specified line. * Causes this element to resume the execution at the specified line.
* *
* @exception DebugException on failure. Reasons include: * @exception DebugException
* on failure. Reasons include:
*/ */
public void jumpToLine( IFile file, int lineNumber ) throws DebugException; public void jumpToLine( IFile file, int lineNumber ) throws DebugException;