cdt/cdt_6_0_x/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/executables/ISourceFileRemapping.java
changeset 60 3982fab6369e
parent 37 c2bce6dd59e7
equal deleted inserted replaced
59:a612e067382b 60:3982fab6369e
     8  * Contributors:
     8  * Contributors:
     9  * Nokia - Initial API and implementation
     9  * Nokia - Initial API and implementation
    10  *******************************************************************************/
    10  *******************************************************************************/
    11 package org.eclipse.cdt.debug.core.executables;
    11 package org.eclipse.cdt.debug.core.executables;
    12 
    12 
       
    13 import org.eclipse.core.runtime.IPath;
    13 
    14 
    14 /**
    15 /**
    15  * ISourceFileRemapping is used by the Executables Manager when finding missing
    16  * ISourceFileRemapping is used by the Executables Manager when finding missing
    16  * source files.
    17  * source files.
    17  * 
    18  * 
    18  * @author Ken Ryall
    19  * @author Ken Ryall
    19  * 
    20  * 
    20  */
    21  */
    21 public interface ISourceFileRemapping {
    22 public interface ISourceFileRemapping {
    22 
    23 
    23 	/**
    24 	String remapSourceFile(IPath executable, String filePath);
    24 	 * @since 6.0
       
    25 	 */
       
    26 	String remapSourceFile(Executable executable, String filePath);
       
    27 
    25 
    28 }
    26 }