1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-01 21:35:40 +02:00

javadoc an abstract method

This commit is contained in:
John Cortell 2010-01-18 16:06:05 +00:00
parent 2104825bd7
commit 24001360f5

View file

@ -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();
/**