What convention do you use to comment getters and setters? This is something I\'ve wondered for quite some time, for instance:
/** * (1a) what do you put h
This kind of boilerplate can be avoided by using Project Lombok. Just document the field variable, even if it's private, and let Lombok annotations generate properly documented getters and setters.
private
For me, this benefit alone is worth the costs.