Getters / setters when the first word is capitalized
What should we expect from the next name ?: mGage Program
if i believe in camelCase it will mGageProgram
, and if i generate (in eclipse) getters and setters i get this:
public String getmGageProgram() {
return mGageProgram;
}
public void setmGageProgram(String mGageProgram) {
this.mGageProgram = mGageProgram;
}
Which seems wrong to me as I expected getMGageProgram()
and setMGageProgram(value)
.
Are these getters / setters names?
+3
source to share