I am adding new things to a class and I want to have a short info about that in comments. Like this:
/**
* Added in September, 2013
* ----more description---
*/
public String newA;
public int newB;
public boolean newC
...etc
This way, a description is only available to newA
object since its the first one under the doc comment.
Is there a way that I apply the same comment to all new attributes under the newA
?
This only applies to attributes since I have no problem adding doc comments to classes and methods.