Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIManager.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIManager.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIManager.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIManager.java
deleted file mode 100644
index e7a19b7b1e3..00000000000
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIManager.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- *(c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- *
- */
-package org.eclipse.cdt.debug.core.cdi;
-
-/**
- */
-public interface ICDIManager extends 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