1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 01:45:33 +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
"CDebugTarget" should provide an adapter for "ICDebugTarget".
* CDebugTarget.java

View file

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