I know it's possible to generate comments for classes, interface, etc., in the wizard screen when creating them, but I haven't found an option to generate javadoc comments for an existing file. Is it possible?
Thanks.
If you like to keep both hands on keyboard, then typing /**
on the line before a method and pressing enter works too:
/**[press enter here]
int avg(int a, int b) throws ArithmeticException {
...
}
-->
/**
*
* @param a
* @param b
* @return
* @throws ArithmeticException
*/
int avg(int a, int b) throws ArithmeticException {
...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With