How to edit getter & setter templates in NetBeans?
getter-setter, netbeans, templates
Solution
As seem you can't really, but I've found a patch in this blog post which modifies Netbeans source.
Problem
By default NetBeans generates 3 line getters and setters like so: ``` public int getFoo() { return foo; } ``` Is there a way to make it generate it in one line like so: ``` public int getFoo() {return foo;} ``` I did not find any get or set templates in Tools -> Options -> Editor -> Code Templates Is there some other way to edit them or maybe a plugin?