From 6b25a8c1c84237bebc78ccf1774282bde31a296e Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Sun, 20 Oct 2002 23:21:29 +0000 Subject: [PATCH] Remove getDirectories() Remove setDirectories() Remove reset(). --- .../cdt/debug/core/cdi/ICDISourceManager.java | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java index a6eef79ad3e..8a40e121352 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java @@ -5,8 +5,6 @@ package org.eclipse.cdt.debug.core.cdi; -import java.io.File; - import org.eclipse.cdt.debug.core.cdi.model.ICDIInstruction; import org.eclipse.cdt.debug.core.cdi.model.ICDIMixedInstruction; @@ -30,30 +28,6 @@ public interface ICDISourceManager extends ICDISessionObject */ String[] getSourcePaths() throws CDIException; - /** - * Returns an array of directories. Returns the empty array - * if the source path is empty. - * - * @return an array of directories - * @throws CDIException on failure. Reasons include: - */ - File[] getDirectories() throws CDIException; - - /** - * Sets the source path according to the given array of directories. - * - * @param directories - the array of directories - * @throws CDIException on failure. Reasons include: - */ - void set( File[] directories ) throws CDIException; - - /** - * Reset the source path to empty. - * - * @throws CDIException on failure. Reasons include: - */ - void reset() throws CDIException; - /** * @param startAddress is the begining address * @param endAddress is the end address