1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[cleanup] Fix javadoc @param tags

This commit is contained in:
Martin Oberhuber 2006-08-24 19:52:16 +00:00
parent 0078e83508
commit d9a5cc2b10

View file

@ -44,6 +44,7 @@ public class SystemStringTokenizer
/**
* Return a count of the number of tokens in the input string
* @return int number of tokens
*/
public int countTokens()
{
@ -51,7 +52,7 @@ public class SystemStringTokenizer
}
/**
* Return true if there are more tokens
* @return true if there are more tokens
*/
public boolean hasMoreTokens()
{
@ -59,7 +60,7 @@ public class SystemStringTokenizer
}
/**
* Return the next token
* @return String the next token
*/
public String nextToken()
{
@ -71,6 +72,9 @@ public class SystemStringTokenizer
/**
* Parse a string into tokens.
* @param inputString String to parse
* @param delimiter Delimiter String, may be multi-character.
* @return Vector of tokens found
*/
public static Vector tokenize(String inputString, String delimiter)
{