What is the recommended place to put JavaDoc for a method with an annotation? Before or after the annotation?
@Test
/**
* My doc
*/
public void testMyTest(){
}
OR
/**
* My doc
*/
@Test
public void testMyTest(){
}
|
What is the recommended place to put JavaDoc for a method with an annotation? Before or after the annotation?
OR
|
|||
|
|
I don't think it matters but second format is better. |
|||||||||||
|
|
The usual style seems to be to have the annotation after the Javadoc comment. The reason is that the annotations are part of the code, not of the documentation - why should the documentation sit inbetween. This may not be obvious for |
||||
|
|