1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

bug 404913: @since tags

This commit is contained in:
Andrew Gvozdev 2013-07-25 21:02:41 -04:00
parent d443b63ab7
commit 4f33e5d299
4 changed files with 8 additions and 2 deletions

View file

@ -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.2.0.qualifier
Bundle-Version: 8.3.0.qualifier
Bundle-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -11,7 +11,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
<version>8.2.0-SNAPSHOT</version>
<version>8.3.0-SNAPSHOT</version>
<artifactId>org.eclipse.cdt.managedbuilder.core</artifactId>
<packaging>eclipse-plugin</packaging>
</project>

View file

@ -100,6 +100,7 @@ public interface IOption extends IBuildObject {
public static final String ORDER = "order"; //$NON-NLS-1$
public static final String COMMAND = "command"; //$NON-NLS-1$
public static final String COMMAND_FALSE = "commandFalse"; //$NON-NLS-1$
/** @since 8.3 */
public static final String USE_BY_SCANNER_DISCOVERY = "useByScannerDiscovery"; //$NON-NLS-1$
/** @since 8.0 */
public static final String COMMAND_GENERATOR = "commandGenerator"; //$NON-NLS-1$
@ -610,6 +611,8 @@ public interface IOption extends IBuildObject {
* Flag to indicate whether the option is also used by scanner discovery.
* @return {@code true} if the option is intended to be passed to scanner discovery command
* or {@code false} otherwise.
*
* @since 8.3
*/
public boolean isForScannerDiscovery();

View file

@ -93,6 +93,7 @@ public abstract class AbstractBuiltinSpecsDetector extends AbstractLanguageSetti
public static final String JOB_FAMILY_BUILTIN_SPECS_DETECTOR = "org.eclipse.cdt.managedbuilder.AbstractBuiltinSpecsDetector"; //$NON-NLS-1$
protected static final String COMPILER_MACRO = "${COMMAND}"; //$NON-NLS-1$
/** @since 8.3 */
protected static final String FLAGS_MACRO = "${FLAGS}"; //$NON-NLS-1$
protected static final String SPEC_FILE_MACRO = "${INPUTS}"; //$NON-NLS-1$
protected static final String SPEC_EXT_MACRO = "${EXT}"; //$NON-NLS-1$
@ -826,6 +827,8 @@ public abstract class AbstractBuiltinSpecsDetector extends AbstractLanguageSetti
*
* @param languageId - language ID.
* @return additional options to pass to scanner discovery command.
*
* @since 8.3
*/
protected String getToolOptions(String languageId) {
return ""; //$NON-NLS-1$