Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Eg.

boolean isCurrent = false;

What do you name its getter and setter?

share|improve this question
I assume you are refering to JavaBeans in which case @Jigar Joshi's answer is correct. However if you are asking about generic getter/setters, the only convension is that the methods contain the field's name and the getter takes no arguments and returns a value, the setter takes one argument and returns no value or returns the object itself. see Buffer as a example of another approach to getter/setters. – Peter Lawrey Mar 16 '11 at 8:41

5 Answers

up vote 25 down vote accepted

Suppose you have

boolean active;

Accessors method would be

public boolean isActive(){return this.active;}

public void setActive(boolean active){this.active = active;}

See Also

share|improve this answer

I believe it would be:

void setCurrent(boolean current)
boolean isCurrent()
share|improve this answer
1  
I like that convention, but conventions don't really matter. The most important is to stick with the one you chose. – Clement Herreman Mar 16 '11 at 8:31
@Clement Conventions do matter when you rely on tools that use these conventions. JavaBeans is a convention with wide support in plenty libraries (JSP / JSF / Spring / Groovy just to name a few). Breaking the conventions means breaking the way these libraries work. – Sean Patrick Floyd Mar 16 '11 at 8:57
@Sean Right, excepted for framework that rely on conventions over configuration. In this case conventions are imposed by the framework, so you don't chose anything. Good remark. – Clement Herreman Mar 18 '11 at 15:08

For a field named isCurrent, the correct getter / setter naming is setCurrent() / isCurrent() (at least that's what Eclipse thinks), which is highly confusing and can be traced back to the main problem:

Your field should not be called isCurrent in the first place. Is is a verb and verbs are inappropriate to represent an Object's state. Use an adjective instead, and suddenly your getter / setter names will make more sense:

private boolean current;

public boolean isCurrent(){
    return current;
}

public void setCurrent(final boolean current){
    this.current = current;
}
share|improve this answer

http://geosoft.no/development/javastyle.html#Specific

14 is prefix should be used for boolean variables and methods.

isSet, isVisible, isFinished, isFound, isOpen

This is the naming convention for boolean methods and variables used by Sun for the Java core packages. Using the is prefix solves a common problem of choosing bad boolean names like status or flag. isStatus or isFlag simply doesn't fit, and the programmer is forced to chose more meaningful names.

Setter methods for boolean variables must have set prefix as in:

void setFound(boolean isFound); There are a few alternatives to the is prefix that fits better in some situations. These are has, can and should prefixes:

boolean hasLicense(); boolean canEvaluate(); boolean shouldAbort = false;

share|improve this answer
Setter: public void setIsCurrent(boolean val)
Getter: public boolean getIsCurrent()

For booleans you can also use

public boolean isCurrent()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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