From b6ffaf6758e787268869dbea78c4f30ff2951185 Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Fri, 1 Jan 2010 18:13:27 +0000 Subject: [PATCH] cleanup: JavaDoc tags --- .../managedbuilder/internal/core/Tool.java | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/Tool.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/Tool.java index b4a71e74c6c..32313c28d99 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/Tool.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/internal/core/Tool.java @@ -235,11 +235,11 @@ public class Tool extends HoldsOptions implements ITool, IOptionCategory, IMatch * This constructor is called to create a Tool whose attributes and children will be * added by separate calls. * - * @param ToolChain The parent of the tool, if any - * @param Tool The superClass, if any - * @param String The id for the new tool - * @param String The name for the new tool - * @param boolean Indicates whether this is an extension element or a managed project element + * @param parent - The parent of the tool, if any + * @param superClass - The superClass, if any + * @param Id - The id for the new tool + * @param name - The name for the new tool + * @param isExtensionElement - Indicates whether this is an extension element or a managed project element */ public Tool(ToolChain parent, ITool superClass, String Id, String name, boolean isExtensionElement) { super(resolvedDefault); @@ -272,11 +272,11 @@ public class Tool extends HoldsOptions implements ITool, IOptionCategory, IMatch * This constructor is called to create a Tool whose attributes and children will be * added by separate calls. * - * @param ResourceConfiguration, The parent of the tool, if any - * @param Tool The superClass, if any - * @param String The id for the new tool - * @param String The name for the new tool - * @param boolean Indicates whether this is an extension element or a managed project element + * @param parent - The parent of the tool, if any + * @param superClass - The superClass, if any + * @param Id - The id for the new tool + * @param name - The name for the new tool + * @param isExtensionElement - Indicates whether this is an extension element or a managed project element */ public Tool(ResourceConfiguration parent, ITool superClass, String Id, String name, boolean isExtensionElement) { @@ -2488,14 +2488,13 @@ public class Tool extends HoldsOptions implements ITool, IOptionCategory, IMatch } /** - * this method used internaly by the Tool to obtain the command flags with the build macros resolved, + * this method used internally by the Tool to obtain the command flags with the build macros resolved, * but could be also used by other MBS components to adjust the tool flags resolution * behavior by passing the method some custom macro substitutor * * @param inputFileLocation * @param outputFileLocation * @param macroSubstitutor - * @return * @throws BuildException */ public String[] getToolCommandFlags(IPath inputFileLocation, IPath outputFileLocation,