When I use auto-generation for getter / setter in Eclipse for a class field called like String lAttr it will produce this:
public String getlAttr() { return lAttr; } public void setlAttr(String lAttr) { this.lAttr = lAttr; }
The first letter of the field will not be capitalized. But some frameworks that I use work with reflection and cause getter / setter using the name "get" + capitalized field name.
Can I change the code generation for getter / setter in eclipse to create output like getLAttr() and setLAttr() ?
source share