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

cleanup: JavaDoc tags

This commit is contained in:
Andrew Gvozdev 2010-01-01 18:13:27 +00:00
parent ec23fcd518
commit b6ffaf6758

View file

@ -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 * This constructor is called to create a Tool whose attributes and children will be
* added by separate calls. * added by separate calls.
* *
* @param ToolChain The parent of the tool, if any * @param parent - The parent of the tool, if any
* @param Tool The superClass, if any * @param superClass - The superClass, if any
* @param String The id for the new tool * @param Id - The id for the new tool
* @param String The name for the new tool * @param name - The name for the new tool
* @param boolean Indicates whether this is an extension element or a managed project element * @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) { public Tool(ToolChain parent, ITool superClass, String Id, String name, boolean isExtensionElement) {
super(resolvedDefault); 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 * This constructor is called to create a Tool whose attributes and children will be
* added by separate calls. * added by separate calls.
* *
* @param ResourceConfiguration, The parent of the tool, if any * @param parent - The parent of the tool, if any
* @param Tool The superClass, if any * @param superClass - The superClass, if any
* @param String The id for the new tool * @param Id - The id for the new tool
* @param String The name for the new tool * @param name - The name for the new tool
* @param boolean Indicates whether this is an extension element or a managed project element * @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) { 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 * but could be also used by other MBS components to adjust the tool flags resolution
* behavior by passing the method some custom macro substitutor * behavior by passing the method some custom macro substitutor
* *
* @param inputFileLocation * @param inputFileLocation
* @param outputFileLocation * @param outputFileLocation
* @param macroSubstitutor * @param macroSubstitutor
* @return
* @throws BuildException * @throws BuildException
*/ */
public String[] getToolCommandFlags(IPath inputFileLocation, IPath outputFileLocation, public String[] getToolCommandFlags(IPath inputFileLocation, IPath outputFileLocation,