1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

[releng] Add missing @since tags

The version of the plug-in had been correctly bumped already, but
the tags were missing causing API errors

Change-Id: Ief9f7250d3940c1ddd4d44ee19d53dc99f1af8b5
This commit is contained in:
Jonah Graham 2019-06-21 11:16:17 -04:00
parent c0417f3f26
commit 0ee3822b04
4 changed files with 8 additions and 1 deletions

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
Bundle-Version: 5.7.0.qualifier
Bundle-Version: 5.7.100.qualifier
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,

View file

@ -20,6 +20,9 @@ import org.eclipse.launchbar.core.target.ILaunchTargetProvider;
import org.eclipse.launchbar.core.target.TargetStatus;
import org.eclipse.launchbar.core.target.TargetStatus.Code;
/**
* @since 5.7
*/
public class GDBRemoteSerialLaunchTargetProvider implements ILaunchTargetProvider {
public static final String TYPE_ID = "org.eclipse.cdt.dsf.gdb.remoteSerialLaunchTargetType"; //$NON-NLS-1$

View file

@ -15,6 +15,9 @@ import org.eclipse.launchbar.core.target.ILaunchTargetManager;
import org.eclipse.launchbar.core.target.ILaunchTargetProvider;
import org.eclipse.launchbar.core.target.TargetStatus;
/**
* @since 5.7
*/
public class GDBRemoteTCPLaunchTargetProvider implements ILaunchTargetProvider {
public static final String TYPE_ID = "org.eclipse.cdt.dsf.gdb.remoteTCPLaunchTargetType"; //$NON-NLS-1$

View file

@ -27,6 +27,7 @@ import org.eclipse.launchbar.core.target.launch.ITargetedLaunch;
* launching matches the cpu architecture and OS of the target, and add the launch
* checks to do the same. For now, though, we are assuming the user knows what they
* are doing when they set this up since it's all manual at this point.
* @since 5.7
*/
public class GdbTargetedLaunchDelegate extends GdbLaunchDelegate implements ILaunchConfigurationTargetedDelegate {