1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

Changed the comments and copyright text.

This commit is contained in:
Mikhail Khodjaiants 2004-06-14 01:31:35 +00:00
parent 2d97441a1f
commit 8ce08923fe
2 changed files with 18 additions and 11 deletions

View file

@ -1,3 +1,7 @@
2004-06-12 Mikhail Khodjaiants
Changed the comments and copyright text.
* ICUpdateManager.java
2004-06-11 Mikhail Khodjaiants 2004-06-11 Mikhail Khodjaiants
"CDebugTarget" should provide an adapter for "ICDebugTarget". "CDebugTarget" should provide an adapter for "ICDebugTarget".
* CDebugTarget.java * CDebugTarget.java

View file

@ -1,24 +1,27 @@
/* /**********************************************************************
*(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; package org.eclipse.cdt.debug.core;
import org.eclipse.debug.core.DebugException; import org.eclipse.debug.core.DebugException;
/** /**
* Enter type comment. * Indicates the support of update and auto-update functions.
*
* @since: Feb 10, 2003
*/ */
public interface ICUpdateManager public interface ICUpdateManager {
{
void setAutoModeEnabled( boolean enable ); void setAutoModeEnabled( boolean enable );
boolean getAutoModeEnabled(); boolean getAutoModeEnabled();
void update() throws DebugException; void update() throws DebugException;
boolean canUpdate(); boolean canUpdate();
} }