vote up 6 vote down star
2

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 here?
 * @param salary (1b) what do you put here?
 */
public void setSalary(float salary);

/*
 * (2a) what do you put here?
 * @return (2b)
 */
public float salary();

I always find I'm pretty much writing the exact same thing for 1a/b and 2a/b, something like 1a) Sets the salary of the employee, 1b) the salary of the employee. It just seems so redundant. Now I could see for something more complex you might write more in the (a) parts, to give context, but for a majority of the getters/setters out there the wording is almost exactly the same.

I'm just curious if, for the simple getters/setters its ok to only fill in either the (a) part OR the (b) part.

What do you think?

flag

7  
As an aside, please don't use float for anything monetary (such as salary here), ever. See e.g. stackoverflow.com/questions/965831/… – Jonik Jun 22 at 19:45

14 Answers

vote up 9 vote down check

I usually just fill the param part for setters, and the @return part for getters:

/**
 * 
 * @param salary Salary to set (in cents)
 */
public void setSalary(float salary);

/*
 * @return current Salary (in cents, may be imaginary for weird employees)
 */
public float salary();

That way javadoc checking tools (such as Eclipse's warnings) will come out clean, and there's no duplication.

link|flag
Can you fix the typo? "@return part for setters" – Jonik Jun 22 at 19:41
I think I like this answer best as there is no redundancy and things like cobertura won't make it look like the coder is slacking with his/her commenting – ThaDon Jun 22 at 20:04
1  
There's also a typo in salary()'s comment. It's not JavaDoc comment. – Fostah Jun 22 at 20:14
1  
I agree that it is the best approach to commenting accessors. – Fostah Jun 22 at 20:16
vote up 1 vote down

it is ok to fill in the (b) part, especially if you put a comment at the field declaration indicating what the field is all about.

link|flag
vote up 9 vote down

Generally nothing, if I can help it. Getters and setters ought to be self-explanatory.

I know that sounds like a non-answer, but I try to use my time for commenting things that need explanation.

link|flag
vote up 0 vote down

If the javadoc does not add anything, I delete the javadoc and use the auto-generated comments.

link|flag
vote up -1 vote down

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.

link|flag
There's a difference between commenting and documenting. – Tom Hawtin - tackline Jun 22 at 20:06
Very true. Exactly therefore is why I do not comment getters and setters. They should be self explanatory, and adding a comment indicates that the code isn't self explanatory. – Thorbjørn Ravn Andersen Jun 22 at 21:25
vote up 0 vote down

Some argue that with simple setter/getters that it's ok to omit information because it should be obvious; however, working in this field you know that there are many people that don't think properly. I generally find it's best to comment everything everywhere even if just to reassure the future developers that nothing wonky is going on underneath the hood. If it's so simple as to not require comments, then maybe the underlying variable should be made public?

link|flag
vote up 14 vote down

I'd say only worry about commenting getters and setters if they have some sort of side effect, or require some sort of precondition outside of initialization (i.e.: getting will remove an item from a data structure, or in order to set something you need to have x and y in place first). Otherwise the comments here are pretty redundant.

Edit: In addition, if you do find a lot of side effects are involved in your getter/setter, you might want to change the getter/setter to have a different method name (ie: push and pop for a stack) [Thanks for the comments below]

link|flag
arguably, you should change the name of getters that have side effects to be more clear, as not all developers will read the comments. – akf Jun 22 at 19:39
That's fine - but that requires users of your API to know that, had there been any side effects, they would have been documented ! – oxbow_lakes Jun 22 at 19:41
akf, I was thinking exactly that after posting :) I guess I'll add it to my response. – Gopherkhan Jun 22 at 19:49
vote up -2 vote down

Commenting accessors, especially if they don't do any operations anywhere, is unnecessary and a waste of fingertips.

If someone reading your code can't understand that person.getFirstName() returns the first name of a person, you should try everything in your powers to get him fired. If it does some database magic, throws a few dice, calls the Secretary of First Names to get the first name, It's safe to assume it's a non-trivial operation, and document it well.

If, on the other hand, your person.getFirstName() doesn't return a person's first name... well, let's not go there, shall we?

link|flag
3  
What if getFirstName() returns null? Where would that be documented? – Steve Kuo Jun 22 at 19:44
How about security.getFinalMaturity()? Not all property names have an immediately understandable meaning. Would you want to be fired for not knowing what that means? – Michael Borgwardt Jun 22 at 19:44
What if the method is implemented by swizzling? How are you supposed to know that unless it's been clearly documented? How are you supposed to know it is a standard setter unless the doc says it is? – oxbow_lakes Jun 22 at 19:45
get/set should in my opinion be reserved for getters and setters. Database lookups should be named like "lookupPerson" or so. – Thorbjørn Ravn Andersen Jun 22 at 21:33
vote up -1 vote down

I always fill in both. The additional time spent typing is negligible, and more information is better than less, in general.

link|flag
They're only self-explanatory if you say "this is a property setter". Otherwise a client of the API has no idea whatsoever what is actually happening inside the methods – oxbow_lakes Jun 22 at 19:36
Who said anything about self-explanatory? – McWafflestix Jun 22 at 19:38
Sorry - added my comment to the wrong post :-( – oxbow_lakes Jun 22 at 19:41
vote up -1 vote down

I write the javadoc at the field level to avoid repeating the text in the getter and setter (follow the DRY principle - Don't Repeat Yourself).

/** yearly gross salary */
private float salary;

You may want to reference the field level javadoc from the setter and getter.

/**
 * Setter for {@link #salary}
 */
public void setSalary(float salary);

/**
 * Getter for {@link #salary}
 */
public float salary();
link|flag
3  
Generated Javadoc does not usually include documentation of private features. – Nat Jun 22 at 19:38
Then again, most people read the source and don't bother generating docs. – Tom Hawtin - tackline Jun 22 at 20:10
vote up 1 vote down

I'm really disappointed about the answers basically saying comprehensive documenting is a waste of time. How are clients of your API supposed to know that a method called setX is a standard JavaBean property setter unless you say so clearly in the documentation?

Without documentation, a caller would have no idea whatsoever if the method had any side effects, other than by crossing their fingers about the apparent convention being followed.

I'm sure I'm not the only one here to have had the misfortune to find out the hard way that a method called setX does a whole lot more than just set a property.

link|flag
Without documentation, any caller would assume that a method called setX sets X. It follows that if setX actually sets X, without doing anything else important, then you don't need documentation. – mquander Jun 22 at 19:42
That's great! Now does this company CrudTech, whose API I am coding against, follow your convention, or does it follow someone else's on this thread? Hmmmm – oxbow_lakes Jun 22 at 19:47
There is no point in writing "sets the price" in the setPrice doc if the method just sets the value for the price property, but if it also e.g. updates the totalPrice property and recalculates the tax, such behaviour should obviously be documented. – João Marcus Jun 22 at 20:32
No; but "JavaBean property setter" is perfectly descriptive – oxbow_lakes Jun 22 at 20:43
vote up 4 vote down

Ask yourself what do you want people to see when the comments are viewed as JavaDocs (from a browser). Many people say that documentation is not necessary since it's obvious. This won't hold if the field is private (unless you explicitly turn on JavaDocs for private fields).

In your case:

public void setSalary(float s)
public float getSalary()

It's not clear what salary is expressed in. It is cents, dollars, pounds, RMB?

When documenting setters/getters, I like to separate the what from the encoding. Example:

/**
 * Returns the height.
 * @return height in meters
 */
public double getHeight()

The first line says it returns the height. The return parameter documents that height is in meters.

link|flag
vote up 0 vote down

If it is a getter/setter, it should be documented.

I digress here, but if it can be made a property, perhaps that is better for simpler coding of the users of the class. I digress further but as for all the comments that have "java" anywhere in them, who said it was java? (the tags, but the question could apply anywhere really)

link|flag
vote up 10 vote down

Absolutely pointless - you're better off without this kind of crap cluttering your code:

/**
 * Sets the foo.
 * 
 * @param foo the foo to set
 */
public void setFoo(float foo);

Very useful, if warranted:

/**
 * Foo is the adjustment factor used in the Bar-calculation. It has a default
 * value depending on the Baz type, but can be adjusted on a per-case base.
 * 
 * @param foo must be greater than 0 and not greater than MAX_FOO.
 */
public void setFoo(float foo);

Especially the explanation of what the property actually means can be crucial in domain models. Whenever I see a bean full of properties with obscure names that only investment bankers, biochemists or quantum physicists understand, and the comments explain that the setGobbledygook() method "sets the gobbledygook.", I want to strangle someone.

link|flag
+1 I'll hold 'em down, Michael, while you strangle 'em! – Carl Manaster Jun 22 at 20:18
My sentiments exactly, the worst are the domain specific models where only a domain expert knows what the heck the property means. – ThaDon Jun 23 at 13:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.