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:
parent
bfe7f8f3d7
commit
3935339cf7
8 changed files with 13 additions and 10 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
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-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -13,7 +13,7 @@ package org.eclipse.cdt.managedbuilder.buildproperties;
|
|||
/**
|
||||
* @noextend This class is not intended to be subclassed by clients.
|
||||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
* @since 8.5
|
||||
* @since 8.6
|
||||
*/
|
||||
public interface IOptionalBuildProperties extends Cloneable {
|
||||
String[] getProperties();
|
||||
|
|
|
@ -55,7 +55,7 @@ public interface IConfiguration extends IBuildObject, IBuildObjectPropertiesCont
|
|||
|
||||
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 BUILD_ARTEFACT_TYPE = "buildArtefactType"; //$NON-NLS-1$
|
||||
|
|
|
@ -43,7 +43,7 @@ public interface IManagedProject extends IBuildObject, IBuildObjectPropertiesCon
|
|||
public static final String PROJECTTYPE = "projectType"; //$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 BUILD_ARTEFACT_TYPE = "buildArtefactType"; //$NON-NLS-1$
|
||||
|
|
|
@ -13,7 +13,7 @@ package org.eclipse.cdt.managedbuilder.core;
|
|||
import org.eclipse.cdt.managedbuilder.buildproperties.IOptionalBuildProperties;
|
||||
|
||||
/**
|
||||
* @since 8.5
|
||||
* @since 8.6
|
||||
*/
|
||||
public interface IOptionalBuildObjectPropertiesContainer {
|
||||
IOptionalBuildProperties getOptionalBuildProperties();
|
||||
|
|
|
@ -158,12 +158,15 @@ public class CCorePlugin extends Plugin {
|
|||
|
||||
/**
|
||||
* 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$
|
||||
/**
|
||||
* Full unique name of the extension point for contributing a Command Launcher factory
|
||||
* @since 6.3
|
||||
* Full unique name of the extension point for contributing a Command Launcher
|
||||
* factory
|
||||
*
|
||||
* @since 6.4
|
||||
*/
|
||||
public static final String COMMAND_LAUNCHER_FACTORY_UNIQ_ID = PLUGIN_ID + "." + COMMAND_LAUNCHER_FACTORY_SIMPLE_ID; //$NON-NLS-1$
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
|||
import org.eclipse.core.runtime.Platform;
|
||||
|
||||
/**
|
||||
* @since 6.3
|
||||
* @since 6.4
|
||||
*/
|
||||
public class CommandLauncherManager {
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ import org.eclipse.cdt.core.settings.model.ICLanguageSettingEntry;
|
|||
import org.eclipse.core.resources.IProject;
|
||||
|
||||
/**
|
||||
* @since 6.3
|
||||
* @since 6.4
|
||||
*/
|
||||
public interface ICommandLauncherFactory {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue