Javaのメソッドドキュメントの正しいドキュメントですか?コードの私の部分は以下のとおりです。パラメータはありませんが、戻り値があります。ローカル変数のみ。
/**
*This method prompts user to enter the how many numbers user is going to test.
*
*@return The validated value based on parameter.
*/
public static int getNum()
{
int t;
Scanner input=new Scanner(System.in);
System.out.print("How many numbers would you like to test? ");
t=input.nextInt();
while (validateNum(t))
{
System.out.print("How many numbers would you like to test? ");
t=input.nextInt();
}
return t;
}