1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 04:15:35 +02:00

cleanup: compilation warnings

This commit is contained in:
Andrew Gvozdev 2010-04-05 01:36:56 +00:00
parent 4eb4b63bcb
commit c5b2bfd909
2 changed files with 27 additions and 0 deletions

View file

@ -23,8 +23,10 @@ public interface IMakeBuilderInfo extends IMakeCommonBuildInfo {
public final static String BUILD_TARGET_CLEAN = ARGS_PREFIX + ".build.target.clean"; //$NON-NLS-1$
/** @deprecated */
@Deprecated
public final static String BUILD_TARGET_INCREAMENTAL = BUILD_TARGET_INCREMENTAL;
/** @deprecated */
@Deprecated
public final static String BUILD_TARGET_FULL = ARGS_PREFIX + ".build.target.full"; //$NON-NLS-1$
boolean isAutoBuildEnable();
@ -33,8 +35,12 @@ public interface IMakeBuilderInfo extends IMakeCommonBuildInfo {
String getAutoBuildTarget();
/**
* @param target
* @throws CoreException
*
* @deprecated
*/
@Deprecated
void setAutoBuildTarget(String target) throws CoreException;
boolean isIncrementalBuildEnabled();
@ -43,8 +49,12 @@ public interface IMakeBuilderInfo extends IMakeCommonBuildInfo {
String getIncrementalBuildTarget();
/**
* @param target
* @throws CoreException
*
* @deprecated
*/
@Deprecated
void setIncrementalBuildTarget(String target) throws CoreException;
boolean isFullBuildEnabled();
@ -53,15 +63,23 @@ public interface IMakeBuilderInfo extends IMakeCommonBuildInfo {
String getFullBuildTarget();
/**
* @param target
* @throws CoreException
*
* @deprecated
*/
@Deprecated
void setFullBuildTarget(String target) throws CoreException;
String getCleanBuildTarget();
/**
* @param target
* @throws CoreException
*
* @deprecated
*/
@Deprecated
void setCleanBuildTarget(String target) throws CoreException;
boolean isCleanBuildEnabled();

View file

@ -33,6 +33,9 @@ public interface IMakeCommonBuildInfo {
IPath getBuildLocation();
/**
* @param location
* @throws CoreException
*
* @deprecated - use setBuildString(BUILD_LOCATION...)
*/
@Deprecated
@ -47,6 +50,9 @@ public interface IMakeCommonBuildInfo {
IPath getBuildCommand();
/**
* @param command
* @throws CoreException
*
* @deprecated - use setBuildString(BUILD_COMMAND...)
*/
@Deprecated
@ -55,6 +61,9 @@ public interface IMakeCommonBuildInfo {
String getBuildArguments();
/**
* @param args
* @throws CoreException
*
* @deprecated - use setBuildString(BUILD_ARGUMENTS...)
*/
@Deprecated