mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
- fixed since tags and enabled API tooling
This commit is contained in:
parent
0bd05a8dbc
commit
3a81a21e1f
10 changed files with 20 additions and 8 deletions
|
@ -20,9 +20,15 @@
|
|||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.api.tools.apiAnalysisBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.PluginNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.pde.api.tools.apiAnalysisNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.debug.gdbjtag.core;singleton:=true
|
||||
Bundle-Version: 5.0.100.qualifier
|
||||
Bundle-Version: 7.0.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.debug.gdbjtag.core.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
|
|
@ -60,7 +60,7 @@ public class Activator extends Plugin {
|
|||
}
|
||||
|
||||
/**
|
||||
* @since 6.0
|
||||
* @since 7.0
|
||||
*/
|
||||
public static BundleContext getBundleContext() {
|
||||
return getDefault().getBundle().getBundleContext();
|
||||
|
|
|
@ -65,7 +65,7 @@ import org.eclipse.debug.core.ILaunchConfiguration;
|
|||
* It adds Jtag hardware debugging specific steps to initialize remote target
|
||||
* and start the remote Jtag debugging.
|
||||
* <p>
|
||||
* @since 6.0
|
||||
* @since 7.0
|
||||
*/
|
||||
public class GDBJtagDSFFinalLaunchSequence extends Sequence {
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
|||
* It extends the standard DSF/GDB launch delegate <code>GdbLaunchDelegate</code>
|
||||
* but overrides the <code>getFinalLaunchSequence</code> method to return the Jtag
|
||||
* hardware debugging specific launch sequence.
|
||||
* @since 6.0
|
||||
* @since 7.0
|
||||
*/
|
||||
@ThreadSafe
|
||||
public class GDBJtagDSFLaunchConfigurationDelegate extends GdbLaunchDelegate {
|
||||
|
|
|
@ -20,9 +20,15 @@
|
|||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.api.tools.apiAnalysisBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.PluginNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.pde.api.tools.apiAnalysisNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.debug.gdbjtag.ui;singleton:=true
|
||||
Bundle-Version: 5.0.100.qualifier
|
||||
Bundle-Version: 7.0.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.debug.gdbjtag.ui.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -13,7 +13,7 @@ package org.eclipse.cdt.debug.gdbjtag.ui;
|
|||
import org.eclipse.cdt.launch.ui.CMainTab;
|
||||
|
||||
/**
|
||||
* @since 6.0
|
||||
* @since 7.0
|
||||
*/
|
||||
public class GDBJtagCDICMainTab extends CMainTab {
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
|
|||
import org.eclipse.debug.core.ILaunchDelegate;
|
||||
|
||||
/**
|
||||
* @since 6.0
|
||||
* @since 7.0
|
||||
*/
|
||||
public class GDBJtagDSFCMainTab extends CMainTab {
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.eclipse.swt.widgets.Text;
|
|||
import org.eclipse.ui.PlatformUI;
|
||||
|
||||
/**
|
||||
* @since 6.0
|
||||
* @since 7.0
|
||||
*/
|
||||
public class GDBJtagDSFDebuggerTab extends AbstractLaunchConfigurationTab {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue