1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 21:05:37 +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$ public final static String BUILD_TARGET_CLEAN = ARGS_PREFIX + ".build.target.clean"; //$NON-NLS-1$
/** @deprecated */ /** @deprecated */
@Deprecated
public final static String BUILD_TARGET_INCREAMENTAL = BUILD_TARGET_INCREMENTAL; public final static String BUILD_TARGET_INCREAMENTAL = BUILD_TARGET_INCREMENTAL;
/** @deprecated */ /** @deprecated */
@Deprecated
public final static String BUILD_TARGET_FULL = ARGS_PREFIX + ".build.target.full"; //$NON-NLS-1$ public final static String BUILD_TARGET_FULL = ARGS_PREFIX + ".build.target.full"; //$NON-NLS-1$
boolean isAutoBuildEnable(); boolean isAutoBuildEnable();
@ -33,8 +35,12 @@ public interface IMakeBuilderInfo extends IMakeCommonBuildInfo {
String getAutoBuildTarget(); String getAutoBuildTarget();
/** /**
* @param target
* @throws CoreException
*
* @deprecated * @deprecated
*/ */
@Deprecated
void setAutoBuildTarget(String target) throws CoreException; void setAutoBuildTarget(String target) throws CoreException;
boolean isIncrementalBuildEnabled(); boolean isIncrementalBuildEnabled();
@ -43,8 +49,12 @@ public interface IMakeBuilderInfo extends IMakeCommonBuildInfo {
String getIncrementalBuildTarget(); String getIncrementalBuildTarget();
/** /**
* @param target
* @throws CoreException
*
* @deprecated * @deprecated
*/ */
@Deprecated
void setIncrementalBuildTarget(String target) throws CoreException; void setIncrementalBuildTarget(String target) throws CoreException;
boolean isFullBuildEnabled(); boolean isFullBuildEnabled();
@ -53,15 +63,23 @@ public interface IMakeBuilderInfo extends IMakeCommonBuildInfo {
String getFullBuildTarget(); String getFullBuildTarget();
/** /**
* @param target
* @throws CoreException
*
* @deprecated * @deprecated
*/ */
@Deprecated
void setFullBuildTarget(String target) throws CoreException; void setFullBuildTarget(String target) throws CoreException;
String getCleanBuildTarget(); String getCleanBuildTarget();
/** /**
* @param target
* @throws CoreException
*
* @deprecated * @deprecated
*/ */
@Deprecated
void setCleanBuildTarget(String target) throws CoreException; void setCleanBuildTarget(String target) throws CoreException;
boolean isCleanBuildEnabled(); boolean isCleanBuildEnabled();

View file

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