mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
[cleanup] Fix javadoc @param tags
This commit is contained in:
parent
0078e83508
commit
d9a5cc2b10
1 changed files with 6 additions and 2 deletions
|
@ -44,6 +44,7 @@ public class SystemStringTokenizer
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a count of the number of tokens in the input string
|
* Return a count of the number of tokens in the input string
|
||||||
|
* @return int number of tokens
|
||||||
*/
|
*/
|
||||||
public int countTokens()
|
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()
|
public boolean hasMoreTokens()
|
||||||
{
|
{
|
||||||
|
@ -59,7 +60,7 @@ public class SystemStringTokenizer
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the next token
|
* @return String the next token
|
||||||
*/
|
*/
|
||||||
public String nextToken()
|
public String nextToken()
|
||||||
{
|
{
|
||||||
|
@ -71,6 +72,9 @@ public class SystemStringTokenizer
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse a string into tokens.
|
* 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)
|
public static Vector tokenize(String inputString, String delimiter)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue