I want to automatically create some sort of report of my code(java). Example: I have something like:
public classe qwerty{
//CODE
/*
* Converts ...
* @param s
* -string...
*/
public static int mult(string s)
{
//CODE
}
}
And I want to create something that looks like this:
...............................
public static int mult(string s)
Converts ...
Paramters:
s (String): string...
Returns (int)
.................................
ETC
Is there any tool for that??