From d00e4e9c129c5bf5f8d4b7fd07f69ae32b527754 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Fri, 18 Feb 2005 21:45:58 +0000 Subject: [PATCH] 2005-02-18 Mikhail Khodjaiants Remove. * cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java --- debug/org.eclipse.cdt.debug.core/ChangeLog | 4 +++ .../cdt/debug/core/cdi/ICDIManager.java | 35 ------------------- 2 files changed, 4 insertions(+), 35 deletions(-) delete mode 100644 debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index fe0560ea5eb..3d8095a478f 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2005-02-18 Mikhail Khodjaiants + Remove. + * cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java + 2005-02-17 Mikhail Khodjaiants Bug 82264: Enhance the Shared Libraries view. Removed the core support of the Shared Libraries view. diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java deleted file mode 100644 index 3bd26bb913c..00000000000 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java +++ /dev/null @@ -1,35 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2000, 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.cdi; - -import org.eclipse.cdt.debug.core.cdi.event.ICDIEventListener; - -/** - */ -public interface ICDIManager extends ICDIEventListener, ICDISessionObject { - - /** - * When the target is suspended the manager will check - * for any updates. The default behaviour (on/off) depend on the manager. - */ - void setAutoUpdate(boolean update); - - /** - * Returns true is the manager is set to autoupdate. - */ - boolean isAutoUpdate(); - - /** - * Force the manager to update its state. - */ - void update() throws CDIException; - -}