Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2014-10-23 08:11:33 +0000
committerUwe Stieber2014-10-23 08:54:21 +0000
commitdce16be10bc26d2499a9c66a68bc67b4e0d567f8 (patch)
tree3d98fc5104ca95b510e3fdec2aaec7c658b642ab /target_explorer/plugins/org.eclipse.tcf.te.tcf.core
parent9f456bba5d169231805fb5e218ff81ca567986a0 (diff)
downloadorg.eclipse.tcf-dce16be10bc26d2499a9c66a68bc67b4e0d567f8.tar.gz
org.eclipse.tcf-dce16be10bc26d2499a9c66a68bc67b4e0d567f8.tar.xz
org.eclipse.tcf-dce16be10bc26d2499a9c66a68bc67b4e0d567f8.zip
Target Explorer: Move source path mapping container name constant to the interface, fix javadoc and assertions of "generateSourcePathMappings"
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.core')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.core/src/org/eclipse/tcf/te/tcf/core/interfaces/IPathMapService.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.core/src/org/eclipse/tcf/te/tcf/core/interfaces/IPathMapService.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.core/src/org/eclipse/tcf/te/tcf/core/interfaces/IPathMapService.java
index c331f14c8..03c0a5ae2 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.core/src/org/eclipse/tcf/te/tcf/core/interfaces/IPathMapService.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.core/src/org/eclipse/tcf/te/tcf/core/interfaces/IPathMapService.java
@@ -25,6 +25,19 @@ public interface IPathMapService extends IService {
*/
public final static String PATHMAP_PROTOCOL_HOST_TO_TARGET = IPathMap.PROTOCOL_TARGET;
+ /**
+ * Name used to label the source path mapping container providing the generated
+ * source path mapping rules.
+ */
+ public final static String SOURCE_PATH_MAPPING_CONTAINER_NAME = "Generated Mappings"; //$NON-NLS-1$
+
+ /**
+ * Generates the source path mappings for the given context.
+ * <p>
+ * <b>Note:</b> This method must be called from outside the TCF event dispatch thread.
+ *
+ * @param context The context. Must not be <code>null</code>.
+ */
public void generateSourcePathMappings(Object context);
/**

Back to the top