mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 18:05:33 +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:
parent
e690f5aade
commit
8007b8846e
4 changed files with 8 additions and 1 deletions
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
|
||||||
Bundle-Version: 5.7.0.qualifier
|
Bundle-Version: 5.7.1.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
|
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
|
|
|
@ -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;
|
||||||
import org.eclipse.launchbar.core.target.TargetStatus.Code;
|
import org.eclipse.launchbar.core.target.TargetStatus.Code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 5.7
|
||||||
|
*/
|
||||||
public class GDBRemoteSerialLaunchTargetProvider implements ILaunchTargetProvider {
|
public class GDBRemoteSerialLaunchTargetProvider implements ILaunchTargetProvider {
|
||||||
|
|
||||||
public static final String TYPE_ID = "org.eclipse.cdt.dsf.gdb.remoteSerialLaunchTargetType"; //$NON-NLS-1$
|
public static final String TYPE_ID = "org.eclipse.cdt.dsf.gdb.remoteSerialLaunchTargetType"; //$NON-NLS-1$
|
||||||
|
|
|
@ -15,6 +15,9 @@ import org.eclipse.launchbar.core.target.ILaunchTargetManager;
|
||||||
import org.eclipse.launchbar.core.target.ILaunchTargetProvider;
|
import org.eclipse.launchbar.core.target.ILaunchTargetProvider;
|
||||||
import org.eclipse.launchbar.core.target.TargetStatus;
|
import org.eclipse.launchbar.core.target.TargetStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 5.7
|
||||||
|
*/
|
||||||
public class GDBRemoteTCPLaunchTargetProvider implements ILaunchTargetProvider {
|
public class GDBRemoteTCPLaunchTargetProvider implements ILaunchTargetProvider {
|
||||||
|
|
||||||
public static final String TYPE_ID = "org.eclipse.cdt.dsf.gdb.remoteTCPLaunchTargetType"; //$NON-NLS-1$
|
public static final String TYPE_ID = "org.eclipse.cdt.dsf.gdb.remoteTCPLaunchTargetType"; //$NON-NLS-1$
|
||||||
|
|
|
@ -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
|
* 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
|
* 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.
|
* 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 {
|
public class GdbTargetedLaunchDelegate extends GdbLaunchDelegate implements ILaunchConfigurationTargetedDelegate {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue