1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

2005-04-27 Alain Magloire

Change in the CDI interface
	* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagent.java
This commit is contained in:
Alain Magloire 2005-04-27 20:21:19 +00:00
parent 37e8015bf2
commit afe7bf4c25
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-04-27 Alain Magloire
Change in the CDI interface
* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagent.java
2005-04-25 Mikhail Khodjaiants 2005-04-25 Mikhail Khodjaiants
Added the new source container type (CDirectorySourceContainer) to provide Added the new source container type (CDirectorySourceContainer) to provide
the UI support for the subfolders search. the UI support for the subfolders search.

View file

@ -26,7 +26,7 @@ public interface ICDISourceManagement {
* Set the source search paths for the debug session. * Set the source search paths for the debug session.
* @param String array of search paths * @param String array of search paths
*/ */
void addSourcePaths(String[] srcPaths) throws CDIException; void setSourcePaths(String[] srcPaths) throws CDIException;
/** /**
* Return the array of source paths * Return the array of source paths
@ -90,5 +90,4 @@ public interface ICDISourceManagement {
int lines) int lines)
throws CDIException; throws CDIException;
} }