1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +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
Moved the "FUNCTION" and "ADDRESS" breakpoint attributes to ICLineBreakpoint.
Added support for the Disassembly view.

View file

@ -1,30 +1,33 @@
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
/**********************************************************************
* Copyright (c) 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.model;
import org.eclipse.debug.core.DebugException;
/**
* 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.
*
*
* @return whether this operation is currently available
*/
public boolean canJumpToAddress( long address );
/**
* Causes this element to resume the execution at the specified address.
*
*
* @exception DebugException on failure. Reasons include:
*/
public void jumpToAddress( long address ) throws DebugException;
}
}

View file

@ -1,8 +1,13 @@
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
/**********************************************************************
* Copyright (c) 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.model;
import org.eclipse.core.resources.IFile;
@ -10,36 +15,35 @@ import org.eclipse.debug.core.DebugException;
/**
* 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.
*
*
* @return whether this operation is currently available
*/
public boolean canJumpToLine( IFile file, int lineNumber );
/**
* 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;
/**
* Returns whether this operation is currently available for this file and line number.
*
*
* @return whether this operation is currently available
*/
public boolean canJumpToLine( String fileName, int lineNumber );
/**
* Causes this element to resume the execution at the specified line.
*
*
* @exception DebugException on failure. Reasons include:
*/
public void jumpToLine( String fileName, int lineNumber ) throws DebugException;
}
}