1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 13:05:22 +02:00

2005-02-18 Mikhail Khodjaiants

Remove.
	* cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java
This commit is contained in:
Alain Magloire 2005-02-18 21:45:58 +00:00
parent 5cafbaec9b
commit d00e4e9c12
2 changed files with 4 additions and 35 deletions

View file

@ -1,3 +1,7 @@
2005-02-18 Mikhail Khodjaiants
Remove.
* cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java
2005-02-17 Mikhail Khodjaiants 2005-02-17 Mikhail Khodjaiants
Bug 82264: Enhance the Shared Libraries view. Bug 82264: Enhance the Shared Libraries view.
Removed the core support of the Shared Libraries view. Removed the core support of the Shared Libraries view.

View file

@ -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;
}