From 8ce08923feeca7ed8e7c127369b007bbea2e291e Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Mon, 14 Jun 2004 01:31:35 +0000 Subject: [PATCH] Changed the comments and copyright text. --- debug/org.eclipse.cdt.debug.core/ChangeLog | 4 +++ .../cdt/debug/core/ICUpdateManager.java | 25 +++++++++++-------- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 428807d1712..d8b6d294c66 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -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 diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICUpdateManager.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICUpdateManager.java index 03cab9b5796..23b5bb07da9 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICUpdateManager.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICUpdateManager.java @@ -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(); -} +} \ No newline at end of file