Hi,
In case this has not already been discussed (if this has already been
discussed I certainly don't want to start the discussion again.)
In the get/set pair template:
- I think it would make sense to generate the new variable as private.
- For boolean variables an isXXX() method could be generated as well
(I'm not sure if this is according or against java policies)
- an additional template for a "const" get/set would be helpful to avoid common
java mistakes, i.e.:
Point getCoord()
{
return new Point(coord);
}
instead of just
return coord;
Keep up the good work,
Carsten