mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix up API @since tags against CDT 8.6.
Change-Id: I31966aa0dc312bb7ba77b6ce91eecd01ad4891ce
This commit is contained in:
parent
9ed8f75f74
commit
7fdd6f6e90
19 changed files with 30 additions and 14 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %Bundle-Name.0
|
Bundle-Name: %Bundle-Name.0
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.autotools.core;singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.autotools.core;singleton:=true
|
||||||
Bundle-Version: 1.4.0.qualifier
|
Bundle-Version: 1.5.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.autotools.core.AutotoolsPlugin
|
Bundle-Activator: org.eclipse.cdt.autotools.core.AutotoolsPlugin
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.ui;bundle-version="3.4.0",
|
Require-Bundle: org.eclipse.ui;bundle-version="3.4.0",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>1.4.0-SNAPSHOT</version>
|
<version>1.5.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.cdt.autotools.core</artifactId>
|
<artifactId>org.eclipse.cdt.autotools.core</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -107,6 +107,7 @@ public class AutotoolsPlugin extends AbstractUIPlugin {
|
||||||
*
|
*
|
||||||
* @param service service interface
|
* @param service service interface
|
||||||
* @return the specified service or null if it's not registered
|
* @return the specified service or null if it's not registered
|
||||||
|
* @since 1.5
|
||||||
*/
|
*/
|
||||||
public static <T> T getService(Class<T> service) {
|
public static <T> T getService(Class<T> service) {
|
||||||
BundleContext context = plugin.getBundle().getBundleContext();
|
BundleContext context = plugin.getBundle().getBundleContext();
|
||||||
|
|
|
@ -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.core.native;singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.core.native;singleton:=true
|
||||||
Bundle-Version: 5.7.0.qualifier
|
Bundle-Version: 5.8.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.internal.core.natives.CNativePlugin
|
Bundle-Activator: org.eclipse.cdt.internal.core.natives.CNativePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>5.7.0-SNAPSHOT</version>
|
<version>5.8.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.cdt.core.native</artifactId>
|
<artifactId>org.eclipse.cdt.core.native</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.utils.serial;
|
package org.eclipse.cdt.utils.serial;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 5.8
|
||||||
|
*/
|
||||||
public enum BaudRate {
|
public enum BaudRate {
|
||||||
|
|
||||||
B0(0),
|
B0(0),
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.utils.serial;
|
package org.eclipse.cdt.utils.serial;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 5.8
|
||||||
|
*/
|
||||||
public enum ByteSize {
|
public enum ByteSize {
|
||||||
|
|
||||||
B5(5),
|
B5(5),
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.utils.serial;
|
package org.eclipse.cdt.utils.serial;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 5.8
|
||||||
|
*/
|
||||||
public enum Parity {
|
public enum Parity {
|
||||||
|
|
||||||
None,
|
None,
|
||||||
|
|
|
@ -19,6 +19,9 @@ import java.util.regex.Pattern;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 5.8
|
||||||
|
*/
|
||||||
public class SerialPort {
|
public class SerialPort {
|
||||||
|
|
||||||
private final String portName;
|
private final String portName;
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.utils.serial;
|
package org.eclipse.cdt.utils.serial;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 5.8
|
||||||
|
*/
|
||||||
public enum StopBits {
|
public enum StopBits {
|
||||||
|
|
||||||
S1,
|
S1,
|
||||||
|
|
|
@ -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.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
|
||||||
Bundle-Version: 5.9.1.qualifier
|
Bundle-Version: 5.10.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -28,7 +28,7 @@ public interface IFunctionType extends IType {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the function type takes variable number of arguments.
|
* Whether the function type takes variable number of arguments.
|
||||||
* @since 5.9
|
* @since 5.10
|
||||||
*/
|
*/
|
||||||
public boolean takesVarArgs();
|
public boolean takesVarArgs();
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>5.9.1-SNAPSHOT</version>
|
<version>5.10.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.cdt.core</artifactId>
|
<artifactId>org.eclipse.cdt.core</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -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.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.ui; singleton:=true
|
||||||
Bundle-Version: 5.9.0.qualifier
|
Bundle-Version: 5.10.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.ui.CUIPlugin
|
Bundle-Activator: org.eclipse.cdt.ui.CUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>5.9.0-SNAPSHOT</version>
|
<version>5.10.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.cdt.ui</artifactId>
|
<artifactId>org.eclipse.cdt.ui</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -48,7 +48,7 @@ public class ContentAssistInvocationContext {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For tests only.
|
* For tests only.
|
||||||
* @since 5.9
|
* @since 5.10
|
||||||
*/
|
*/
|
||||||
public static void assertNoUndisposedContexts() {
|
public static void assertNoUndisposedContexts() {
|
||||||
Assert.isTrue(numberOfUndisposedContexts.get() == 0,
|
Assert.isTrue(numberOfUndisposedContexts.get() == 0,
|
||||||
|
@ -177,7 +177,7 @@ public class ContentAssistInvocationContext {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 5.9
|
* @since 5.10
|
||||||
*/
|
*/
|
||||||
protected void assertNotDisposed() {
|
protected void assertNotDisposed() {
|
||||||
if (fDisposed)
|
if (fDisposed)
|
||||||
|
|
|
@ -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: 4.6.0.qualifier
|
Bundle-Version: 4.7.0.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,
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>4.6.0-SNAPSHOT</version>
|
<version>4.7.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.cdt.dsf.gdb</artifactId>
|
<artifactId>org.eclipse.cdt.dsf.gdb</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -1177,7 +1177,7 @@ public class MIExpressions extends AbstractDsfService implements IMIExpressions,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 4.6
|
* @since 4.7
|
||||||
*/
|
*/
|
||||||
protected IExpressionDMData.BasicType getBasicType(ExprMetaGetVarInfo varInfo) {
|
protected IExpressionDMData.BasicType getBasicType(ExprMetaGetVarInfo varInfo) {
|
||||||
IExpressionDMData.BasicType basicType = null;
|
IExpressionDMData.BasicType basicType = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue