1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Remove getDirectories()

Remove setDirectories()
Remove reset().
This commit is contained in:
Alain Magloire 2002-10-20 23:21:29 +00:00
parent 0f4029f0e6
commit 6b25a8c1c8

View file

@ -5,8 +5,6 @@
package org.eclipse.cdt.debug.core.cdi; 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.ICDIInstruction;
import org.eclipse.cdt.debug.core.cdi.model.ICDIMixedInstruction; import org.eclipse.cdt.debug.core.cdi.model.ICDIMixedInstruction;
@ -30,30 +28,6 @@ public interface ICDISourceManager extends ICDISessionObject
*/ */
String[] getSourcePaths() throws CDIException; 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 startAddress is the begining address
* @param endAddress is the end address * @param endAddress is the end address