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
Don't put anything if the field name is suficiently descriptive of the contents.
Generally, let the code be self standing, and avoid commenting if at all possible. This may require refactoring.
EDIT: The above refers to getters and setters only. I believe anything non trivial should be properly javadoc'ed.