diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 2f5fc942804..ccbe9bab2b4 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -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. diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToAddress.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToAddress.java index 44393704a47..bd1a8373829 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToAddress.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToAddress.java @@ -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; -} +} \ No newline at end of file diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToLine.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToLine.java index b5d6a125ce4..9c812e281b3 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToLine.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IJumpToLine.java @@ -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; -} +} \ No newline at end of file