Skip to main content
summaryrefslogtreecommitdiffstats
path: root/launch
diff options
context:
space:
mode:
Diffstat (limited to 'launch')
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
index 9b0aa73f271..6f02af44067 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
@@ -229,6 +229,10 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
throw new CoreException(new Status(IStatus.OK, getPluginID(), code, message, null));
}
+ /**
+ * @return the ID of the plugin hosting the launch delegate. It's used to
+ * create {@link IStatus} objects.
+ */
abstract protected String getPluginID();
/**

Back to the top