| [news.eclipse.tools.jdt] Re: Modifying setter generation? |
I'd like to add the keyword "final" before the argument in the setter signature. Is there any way to modify the template to do this?
I see you can check off "final" but that's for the whole method. I want it to look like this:
public void setFoo(final int foo) { ... }
Otherwise, CheckStyle warns about the variable needing to be final.
Eric