Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2005-02-18 21:45:58 +0000
committerAlain Magloire2005-02-18 21:45:58 +0000
commitd00e4e9c129c5bf5f8d4b7fd07f69ae32b527754 (patch)
tree700eaec12103504d8e652eb46373b30c37ecd17e /debug/org.eclipse.cdt.debug.core/cdi/org
parent5cafbaec9b9548600eb21ab653a516cae4d767f8 (diff)
downloadorg.eclipse.cdt-d00e4e9c129c5bf5f8d4b7fd07f69ae32b527754.tar.gz
org.eclipse.cdt-d00e4e9c129c5bf5f8d4b7fd07f69ae32b527754.tar.xz
org.eclipse.cdt-d00e4e9c129c5bf5f8d4b7fd07f69ae32b527754.zip
2005-02-18 Mikhail Khodjaiants
Remove. * cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/cdi/org')
-rw-r--r--debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java35
1 files changed, 0 insertions, 35 deletions
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;
-
-}

Back to the top