mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Increment version number to 7.0
This commit is contained in:
parent
356c851816
commit
4934483c60
15 changed files with 30 additions and 24 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.debug.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.debug.core; singleton:=true
|
||||||
Bundle-Version: 6.1.0.qualifier
|
Bundle-Version: 7.0.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.debug.core.CDebugCorePlugin
|
Bundle-Activator: org.eclipse.cdt.debug.core.CDebugCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -241,7 +241,7 @@ public class CDIDebugModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 6.1
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public static ICLineBreakpoint createLineTracepoint( String sourceHandle, IResource resource, int type, int lineNumber, boolean enabled, int ignoreCount, String condition, boolean register ) throws CoreException {
|
public static ICLineBreakpoint createLineTracepoint( String sourceHandle, IResource resource, int type, int lineNumber, boolean enabled, int ignoreCount, String condition, boolean register ) throws CoreException {
|
||||||
HashMap<String, Object> attributes = new HashMap<String, Object>( 10 );
|
HashMap<String, Object> attributes = new HashMap<String, Object>( 10 );
|
||||||
|
@ -351,7 +351,7 @@ public class CDIDebugModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 6.1
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public static ICAddressBreakpoint createAddressTracepoint( String module, String sourceHandle, IResource resource, int type, int lineNumber, IAddress address, boolean enabled, int ignoreCount, String condition, boolean register ) throws CoreException {
|
public static ICAddressBreakpoint createAddressTracepoint( String module, String sourceHandle, IResource resource, int type, int lineNumber, IAddress address, boolean enabled, int ignoreCount, String condition, boolean register ) throws CoreException {
|
||||||
HashMap<String, Object> attributes = new HashMap<String, Object>( 10 );
|
HashMap<String, Object> attributes = new HashMap<String, Object>( 10 );
|
||||||
|
@ -567,7 +567,7 @@ public class CDIDebugModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 6.1
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public static ICFunctionBreakpoint createFunctionTracepoint( String sourceHandle, IResource resource, int type, String function, int charStart, int charEnd, int lineNumber, boolean enabled, int ignoreCount, String condition, boolean register ) throws CoreException {
|
public static ICFunctionBreakpoint createFunctionTracepoint( String sourceHandle, IResource resource, int type, String function, int charStart, int charEnd, int lineNumber, boolean enabled, int ignoreCount, String condition, boolean register ) throws CoreException {
|
||||||
HashMap<String, Object> attributes = new HashMap<String, Object>( 10 );
|
HashMap<String, Object> attributes = new HashMap<String, Object>( 10 );
|
||||||
|
|
|
@ -57,18 +57,20 @@ public interface ICDTLaunchConfigurationConstants {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute value constants for build before launch.
|
* Launch configuration attribute value constants for build before launch.
|
||||||
* @since 6.1 */
|
*
|
||||||
|
* @since 7.0
|
||||||
|
*/
|
||||||
public static final int BUILD_BEFORE_LAUNCH_DISABLED = 0;
|
public static final int BUILD_BEFORE_LAUNCH_DISABLED = 0;
|
||||||
/** @since 6.1 */
|
/** @since 7.0 */
|
||||||
public static final int BUILD_BEFORE_LAUNCH_ENABLED = 1;
|
public static final int BUILD_BEFORE_LAUNCH_ENABLED = 1;
|
||||||
/** @since 6.1 */
|
/** @since 7.0 */
|
||||||
public static final int BUILD_BEFORE_LAUNCH_USE_WORKSPACE_SETTING = 2;
|
public static final int BUILD_BEFORE_LAUNCH_USE_WORKSPACE_SETTING = 2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute key. The value is the ID of the project's
|
* Launch configuration attribute key. The value is the ID of the project's
|
||||||
* build configuration that should be used when a build is required before launch.
|
* build configuration that should be used when a build is required before launch.
|
||||||
*/
|
*/
|
||||||
/** @since 6.1 */
|
/** @since 7.0 */
|
||||||
public static final String ATTR_BUILD_BEFORE_LAUNCH = CDT_LAUNCH_ID + ".ATTR_BUILD_BEFORE_LAUNCH_ATTR"; //$NON-NLS-1$
|
public static final String ATTR_BUILD_BEFORE_LAUNCH = CDT_LAUNCH_ID + ".ATTR_BUILD_BEFORE_LAUNCH_ATTR"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -12,11 +12,10 @@ package org.eclipse.cdt.debug.core.model;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.CoreException;
|
import org.eclipse.core.runtime.CoreException;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A tracepoint specific to the C/C++ debug model.
|
* A tracepoint specific to the C/C++ debug model.
|
||||||
*
|
*
|
||||||
* @since 6.1
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public interface ICTracepoint extends ICLineBreakpoint {
|
public interface ICTracepoint extends ICLineBreakpoint {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -14,7 +14,8 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handler interface to perform a reverse Resume operation
|
* Handler interface to perform a reverse Resume operation
|
||||||
* @since 6.1
|
*
|
||||||
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public interface IReverseResumeHandler extends IDebugCommandHandler {
|
public interface IReverseResumeHandler extends IDebugCommandHandler {
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,8 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handler interface to perform a reverse StepInto operation
|
* Handler interface to perform a reverse StepInto operation
|
||||||
* @since 6.1
|
*
|
||||||
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public interface IReverseStepIntoHandler extends IDebugCommandHandler {
|
public interface IReverseStepIntoHandler extends IDebugCommandHandler {
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,8 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handler interface to perform a reverse StepOver operation
|
* Handler interface to perform a reverse StepOver operation
|
||||||
* @since 6.1
|
*
|
||||||
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public interface IReverseStepOverHandler extends IDebugCommandHandler {
|
public interface IReverseStepOverHandler extends IDebugCommandHandler {
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,8 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handler interface to toggle reverse debugging
|
* Handler interface to toggle reverse debugging
|
||||||
* @since 6.1
|
*
|
||||||
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public interface IReverseToggleHandler extends IDebugCommandHandler {
|
public interface IReverseToggleHandler extends IDebugCommandHandler {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -14,7 +14,8 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handler interface to perform an Uncall operation (reverse debugging)
|
* Handler interface to perform an Uncall operation (reverse debugging)
|
||||||
* @since 6.1
|
*
|
||||||
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public interface IUncallHandler extends IDebugCommandHandler {
|
public interface IUncallHandler extends IDebugCommandHandler {
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@ Export-Package: org.eclipse.cdt.debug.mi.core,
|
||||||
org.eclipse.cdt.debug.mi.core.command.factories.win32,
|
org.eclipse.cdt.debug.mi.core.command.factories.win32,
|
||||||
org.eclipse.cdt.debug.mi.core.event,
|
org.eclipse.cdt.debug.mi.core.event,
|
||||||
org.eclipse.cdt.debug.mi.core.output
|
org.eclipse.cdt.debug.mi.core.output
|
||||||
Require-Bundle: org.eclipse.cdt.debug.core;bundle-version="[6.0.0,7.0.0)",
|
Require-Bundle: org.eclipse.cdt.debug.core;bundle-version="[7.0.0,8.0.0)",
|
||||||
org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.debug.core;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.debug.core;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
||||||
|
|
|
@ -15,8 +15,8 @@ Export-Package: org.eclipse.cdt.debug.mi.internal.ui;x-internal:=true,
|
||||||
Require-Bundle: org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
|
Require-Bundle: org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.cdt.debug.mi.core;bundle-version="[6.0.0,7.0.0)",
|
org.eclipse.cdt.debug.mi.core;bundle-version="[6.0.0,7.0.0)",
|
||||||
org.eclipse.cdt.debug.ui;bundle-version="[6.0.0,7.0.0)",
|
org.eclipse.cdt.debug.ui;bundle-version="[7.0.0,8.0.0)",
|
||||||
org.eclipse.cdt.debug.core;bundle-version="[6.0.0,7.0.0)",
|
org.eclipse.cdt.debug.core;bundle-version="[7.0.0,8.0.0)",
|
||||||
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
||||||
org.eclipse.cdt.ui;bundle-version="[5.0.0,6.0.0)",
|
org.eclipse.cdt.ui;bundle-version="[5.0.0,6.0.0)",
|
||||||
org.eclipse.debug.core;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.debug.core;bundle-version="[3.2.0,4.0.0)",
|
||||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.debug.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.debug.ui; singleton:=true
|
||||||
Bundle-Version: 6.1.0.qualifier
|
Bundle-Version: 7.0.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.debug.ui.CDebugUIPlugin
|
Bundle-Activator: org.eclipse.cdt.debug.ui.CDebugUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
@ -35,7 +35,7 @@ Require-Bundle: org.eclipse.ui.ide;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.debug.ui;bundle-version="[3.3.100,4.0.0)",
|
org.eclipse.debug.ui;bundle-version="[3.3.100,4.0.0)",
|
||||||
org.eclipse.debug.core;bundle-version="[3.4.0,4.0.0)",
|
org.eclipse.debug.core;bundle-version="[3.4.0,4.0.0)",
|
||||||
org.eclipse.cdt.debug.core;bundle-version="[6.0.0,7.0.0)",
|
org.eclipse.cdt.debug.core;bundle-version="[7.0.0,8.0.0)",
|
||||||
org.eclipse.cdt.ui;bundle-version="[5.0.0,6.0.0)",
|
org.eclipse.cdt.ui;bundle-version="[5.0.0,6.0.0)",
|
||||||
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
||||||
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
||||||
|
|
|
@ -56,7 +56,7 @@ import org.eclipse.ui.IEditorPart;
|
||||||
/**
|
/**
|
||||||
* The text hovering support for C/C++ debugger.
|
* The text hovering support for C/C++ debugger.
|
||||||
*
|
*
|
||||||
* @since 6.1
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractDebugTextHover implements ICEditorTextHover, ITextHoverExtension {
|
public abstract class AbstractDebugTextHover implements ICEditorTextHover, ITextHoverExtension {
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ import org.eclipse.swt.widgets.Composite;
|
||||||
import org.eclipse.swt.widgets.Label;
|
import org.eclipse.swt.widgets.Label;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 6.1
|
* @since 7.0
|
||||||
*/
|
*/
|
||||||
public class ReadOnlyFieldEditor extends FieldEditor implements ICBreakpointsUIContributionUser {
|
public class ReadOnlyFieldEditor extends FieldEditor implements ICBreakpointsUIContributionUser {
|
||||||
protected Label textField;
|
protected Label textField;
|
||||||
|
|
|
@ -18,8 +18,8 @@ Require-Bundle: org.eclipse.ui.ide;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
||||||
org.eclipse.cdt.ui;bundle-version="[5.0.0,6.0.0)",
|
org.eclipse.cdt.ui;bundle-version="[5.0.0,6.0.0)",
|
||||||
org.eclipse.cdt.debug.core;bundle-version="[6.0.0,7.0.0)",
|
org.eclipse.cdt.debug.core;bundle-version="[7.0.0,8.0.0)",
|
||||||
org.eclipse.cdt.debug.ui;bundle-version="[6.0.0,7.0.0)",
|
org.eclipse.cdt.debug.ui;bundle-version="[7.0.0,8.0.0)",
|
||||||
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.core.variables;bundle-version="[3.1.100,4.0.0)",
|
org.eclipse.core.variables;bundle-version="[3.1.100,4.0.0)",
|
||||||
org.eclipse.ltk.core.refactoring;bundle-version="[3.5.0,4.0.0)"
|
org.eclipse.ltk.core.refactoring;bundle-version="[3.5.0,4.0.0)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue