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 2a235b6fd45..ff0f7adcfec 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 @@ -16,8 +16,8 @@ import java.io.File; public interface ICDISourceManager extends ICDISessionObject { /** - * Set the source search paths for the debu session. - * @param String + * Set the source search paths for the debug session. + * @param String array of search paths */ void addSourcePaths(String[] srcPaths) throws CDIException; @@ -27,6 +27,18 @@ public interface ICDISourceManager extends ICDISessionObject */ String[] getSourcePaths() throws CDIException; + /** + * Set the shared library search paths for the debu session. + * @param String + */ + void addLibraryPaths(String[] libPaths) throws CDIException; + + /** + * Return the array of shared libraries search paths + * @return String array of search paths. + */ + String[] getLibraryPaths() throws CDIException; + /** * Returns an array of directories. Returns the empty array * if the source path is empty. diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/SourceManager.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/SourceManager.java index 0992e8f805e..863e8911a86 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/SourceManager.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/SourceManager.java @@ -16,7 +16,7 @@ import org.eclipse.cdt.debug.mi.core.MISession; import org.eclipse.cdt.debug.mi.core.command.CommandFactory; import org.eclipse.cdt.debug.mi.core.command.MIEnvironmentDirectory; import org.eclipse.cdt.debug.mi.core.output.MIInfo; -import sun.security.krb5.internal.crypto.e; + /** */ @@ -73,4 +73,17 @@ public class SourceManager extends SessionObject implements ICDISourceManager { return (String[])sourcePaths.toArray(new String[0]); } + /** + * @see org.eclipse.cdt.debug.core.cdi.ICDISourceManager#addLibraryPaths(String[]) + */ + public void addLibraryPaths(String[] libPaths) throws CDIException { + } + + /** + * @see org.eclipse.cdt.debug.core.cdi.ICDISourceManager#getLibraryPaths() + */ + public String[] getLibraryPaths() throws CDIException { + return null; + } + }