1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Fix API baseline errors from Command Launcher changes.

Change-Id: Ibc5ba38669832f6baa67ff49ce4fe08ab1f5a14a
This commit is contained in:
Doug Schaefer 2017-10-31 15:57:56 -04:00
parent bfe7f8f3d7
commit 3935339cf7
8 changed files with 13 additions and 10 deletions

View file

@ -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.managedbuilder.core; singleton:=true Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.core; singleton:=true
Bundle-Version: 8.5.0.qualifier Bundle-Version: 8.6.0.qualifier
Bundle-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin Bundle-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-Localization: plugin Bundle-Localization: plugin

View file

@ -13,7 +13,7 @@ package org.eclipse.cdt.managedbuilder.buildproperties;
/** /**
* @noextend This class is not intended to be subclassed by clients. * @noextend This class is not intended to be subclassed by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
* @since 8.5 * @since 8.6
*/ */
public interface IOptionalBuildProperties extends Cloneable { public interface IOptionalBuildProperties extends Cloneable {
String[] getProperties(); String[] getProperties();

View file

@ -55,7 +55,7 @@ public interface IConfiguration extends IBuildObject, IBuildObjectPropertiesCont
public static final String BUILD_PROPERTIES = "buildProperties"; //$NON-NLS-1$ public static final String BUILD_PROPERTIES = "buildProperties"; //$NON-NLS-1$
/** /**
* @since 8.5 * @since 8.6
*/ */
public static final String OPTIONAL_BUILD_PROPERTIES = "optionalBuildProperties"; //$NON-NLS-1$ public static final String OPTIONAL_BUILD_PROPERTIES = "optionalBuildProperties"; //$NON-NLS-1$
public static final String BUILD_ARTEFACT_TYPE = "buildArtefactType"; //$NON-NLS-1$ public static final String BUILD_ARTEFACT_TYPE = "buildArtefactType"; //$NON-NLS-1$

View file

@ -43,7 +43,7 @@ public interface IManagedProject extends IBuildObject, IBuildObjectPropertiesCon
public static final String PROJECTTYPE = "projectType"; //$NON-NLS-1$ public static final String PROJECTTYPE = "projectType"; //$NON-NLS-1$
public static final String BUILD_PROPERTIES = "buildProperties"; //$NON-NLS-1$ public static final String BUILD_PROPERTIES = "buildProperties"; //$NON-NLS-1$
/** /**
* @since 8.5 * @since 8.6
*/ */
public static final String OPTIONAL_BUILD_PROPERTIES = "optionalBuildProperties"; //$NON-NLS-1$ public static final String OPTIONAL_BUILD_PROPERTIES = "optionalBuildProperties"; //$NON-NLS-1$
public static final String BUILD_ARTEFACT_TYPE = "buildArtefactType"; //$NON-NLS-1$ public static final String BUILD_ARTEFACT_TYPE = "buildArtefactType"; //$NON-NLS-1$

View file

@ -13,7 +13,7 @@ package org.eclipse.cdt.managedbuilder.core;
import org.eclipse.cdt.managedbuilder.buildproperties.IOptionalBuildProperties; import org.eclipse.cdt.managedbuilder.buildproperties.IOptionalBuildProperties;
/** /**
* @since 8.5 * @since 8.6
*/ */
public interface IOptionalBuildObjectPropertiesContainer { public interface IOptionalBuildObjectPropertiesContainer {
IOptionalBuildProperties getOptionalBuildProperties(); IOptionalBuildProperties getOptionalBuildProperties();

View file

@ -158,12 +158,15 @@ public class CCorePlugin extends Plugin {
/** /**
* Name of the extension point for contributing a Command Launcher factory * Name of the extension point for contributing a Command Launcher factory
* @since 6.3 *
* @since 6.4
*/ */
public static final String COMMAND_LAUNCHER_FACTORY_SIMPLE_ID = "CommandLauncherFactory"; //$NON-NLS-1$ public static final String COMMAND_LAUNCHER_FACTORY_SIMPLE_ID = "CommandLauncherFactory"; //$NON-NLS-1$
/** /**
* Full unique name of the extension point for contributing a Command Launcher factory * Full unique name of the extension point for contributing a Command Launcher
* @since 6.3 * factory
*
* @since 6.4
*/ */
public static final String COMMAND_LAUNCHER_FACTORY_UNIQ_ID = PLUGIN_ID + "." + COMMAND_LAUNCHER_FACTORY_SIMPLE_ID; //$NON-NLS-1$ public static final String COMMAND_LAUNCHER_FACTORY_UNIQ_ID = PLUGIN_ID + "." + COMMAND_LAUNCHER_FACTORY_SIMPLE_ID; //$NON-NLS-1$

View file

@ -30,7 +30,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Platform; import org.eclipse.core.runtime.Platform;
/** /**
* @since 6.3 * @since 6.4
*/ */
public class CommandLauncherManager { public class CommandLauncherManager {

View file

@ -17,7 +17,7 @@ import org.eclipse.cdt.core.settings.model.ICLanguageSettingEntry;
import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IProject;
/** /**
* @since 6.3 * @since 6.4
*/ */
public interface ICommandLauncherFactory { public interface ICommandLauncherFactory {