cdt/cdt_6_0_x/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/executables/ISourceFileRemapping.java
author wpaul
Fri, 07 Aug 2009 13:47:27 -0500
changeset 60 3982fab6369e
parent 37 c2bce6dd59e7
permissions -rw-r--r--
fixed executables view merge problems - bug #'s 9562, 9568, 9571.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     1
/*******************************************************************************
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     2
 * Copyright (c) 2008 Nokia and others.
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     3
 * All rights reserved. This program and the accompanying materials
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     4
 * are made available under the terms of the Eclipse Public License v1.0
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     5
 * which accompanies this distribution, and is available at
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     6
 * http://www.eclipse.org/legal/epl-v10.html
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     7
 *
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     8
 * Contributors:
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     9
 * Nokia - Initial API and implementation
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    10
 *******************************************************************************/
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    11
package org.eclipse.cdt.debug.core.executables;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    12
60
3982fab6369e fixed executables view merge problems - bug #'s 9562, 9568, 9571.
wpaul
parents: 37
diff changeset
    13
import org.eclipse.core.runtime.IPath;
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    14
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    15
/**
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    16
 * ISourceFileRemapping is used by the Executables Manager when finding missing
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    17
 * source files.
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    18
 * 
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    19
 * @author Ken Ryall
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    20
 * 
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    21
 */
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    22
public interface ISourceFileRemapping {
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    23
60
3982fab6369e fixed executables view merge problems - bug #'s 9562, 9568, 9571.
wpaul
parents: 37
diff changeset
    24
	String remapSourceFile(IPath executable, String filePath);
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    25
60
3982fab6369e fixed executables view merge problems - bug #'s 9562, 9568, 9571.
wpaul
parents: 37
diff changeset
    26
}