I have refactored a class and moved some code from the constructor to a static initializer. What should I do with the javadoc that was on the constructor? Is it possible to add javadoc to a static initializer?
|
Add it to the javadoc at the class level (as static initializers can cause nasty side effects depending on what they trigger. If you use static initializers, the behaviour should be documented). |
||||
|
|
|
JavaDoc is intended primarily to document the interface of the class. JavaDoc comments must precede a class, field, constructor or method declaration. A static initializer is not part of the interface. It's part of the implementation of the class. You could document its behavior in the class documentation, if desired. |
|||||||||||
|
|
I'd say the important parts of that documentation should be moved to the class' documentation:
|
|||
|
|
|
There is no such thing as a static constructor in Java (as oposed to C#), which is why you must document this behavior at the class level. Also, since the static initializer will most likely initialize some static fields, if these fields are public, protected(, or package-private, depending on your JavaDoc visibility convention), you shold add details about the way these fields are initialized based on the behavior of the static initializer. |
|||
|
|