From f47d42017152147414c39e72b58be72efe0d22c5 Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Thu, 11 Mar 2010 18:16:36 +0000 Subject: [PATCH] cleanup: JavaDoc warnings --- .../cdt/managedbuilder/core/IConfiguration.java | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IConfiguration.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IConfiguration.java index fd0dbce1657..598e19f6a81 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IConfiguration.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IConfiguration.java @@ -83,9 +83,11 @@ public interface IConfiguration extends IBuildObject, IBuildObjectPropertiesCont /** * Creates the IToolChain child of this configuration. * - * @param superClass The superClass, if any - * @param Id The id for the new tool chain - * @param name The name for the new tool chain + * @param superClass - The superClass, if any + * @param Id - The id for the new tool chain + * @param name - The name for the new tool chain + * @param isExtensionElement - set {@code true} if the toolchain being created + * represents extension point toolchain * * @return IToolChain */ @@ -213,10 +215,10 @@ public interface IConfiguration extends IBuildObject, IBuildObjectPropertiesCont public IProjectType getProjectType(); /** - * Returns the resource configuration child of this configuration + * @param path - path of the resource + * + * @return the resource configuration child of this configuration * that is associated with the project resource, or null if none. - * - * @return IResourceConfiguration */ public IResourceConfiguration getResourceConfiguration(String path); @@ -334,6 +336,8 @@ public interface IConfiguration extends IBuildObject, IBuildObjectPropertiesCont /** * Removes a resource configuration from the configuration's list. + * + * @param resConfig - resource configuration to remove */ public void removeResourceConfiguration(IResourceInfo resConfig); @@ -400,6 +404,7 @@ public interface IConfiguration extends IBuildObject, IBuildObjectPropertiesCont /** * Sets the command used to clean the outputs of this configuration. + * @param command - the command to clean outputs */ public void setCleanCommand(String command);