1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00

[cleanup] Fix Javadoc Warnings

This commit is contained in:
Martin Oberhuber 2008-02-11 12:07:33 +00:00
parent 7d23612428
commit 578f82bde1
2 changed files with 11 additions and 20 deletions

View file

@ -178,7 +178,7 @@ public class CommandMinerThread extends MinerThread
{ {
isBash = true; isBash = true;
// no bash! // no bash!
theShell = "sh"; theShell = "sh"; //$NON-NLS-1$
} }
} }

View file

@ -328,14 +328,10 @@ public class FileClassifier extends Thread
/** /**
* Classifies from the given line of classification output. * Classifies from the given line of classification output.
* *
* @param parentFile * @param parentFile the parent file.
* the parent file. * @param line the line of output to parse.
* @param line * @param specialEncoding a special encoding, if there is one.
* the line of output to parse. * @param resolveLink resolve link.
* @param specialEncoding
* a special encoding, if there is one.
* @param resolveLink
* resolve link.
* @return the classification. * @return the classification.
*/ */
protected String classify(File parentFile, String line, String specialEncoding, boolean resolveLink) protected String classify(File parentFile, String line, String specialEncoding, boolean resolveLink)
@ -533,8 +529,7 @@ public class FileClassifier extends Thread
* Classify a file. It classifies the file by running "sh -c file * Classify a file. It classifies the file by running "sh -c file
* <filename>". * <filename>".
* *
* @param aFile * @param aFile the file to classify.
* the file to classify.
* @return the classification. * @return the classification.
*/ */
public String classifyFile(File aFile) public String classifyFile(File aFile)
@ -683,12 +678,9 @@ public class FileClassifier extends Thread
/** /**
* Classifies the children of a given file. * Classifies the children of a given file.
* *
* @param parentFile * @param parentFile the parent file.
* the parent file. * @param files the files to classify. Specify "*" to classify all files.
* @param files * @param resolveLinks resolve links if possible.
* the files to classify. Specify "*" to classify all files.
* @param resolveLinks
* resolve links if possible.
*/ */
protected void classifyChildren(File parentFile, String files, boolean resolveLinks) protected void classifyChildren(File parentFile, String files, boolean resolveLinks)
{ {
@ -949,9 +941,8 @@ public class FileClassifier extends Thread
/** /**
* Classify virtual children. * Classify virtual children.
* *
* @param parentPath * @param parentPath the full path of the parent file.
* the full path of the parent file. The path could represent an * The path could represent an archive or a virtual folder.
* archive or a virtual folder.
*/ */
protected void classifyVirtualChildren(String parentPath) protected void classifyVirtualChildren(String parentPath)
{ {