I have a problem with generating getter/setter for attributes like xPos, yPos, nCounter and so on. Plattform is Eclipse Luna, Java 1.7, Struts2...
While Eclipse generates
private xPos
getXPos()
setXPos(...)
Lombok will generate
getxPos()
setxPos(...)
Is there any way to tell Lombok to uppercase every first character?