问题
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?
回答1:
As seem you can't really, but I've found a patch in this blog post which modifies Netbeans source.
回答2:
on NB 7.2+ you can create your own generator:
though making use of Javac API in a NB modules (hard to do something better than a getter/setter)
https://platform.netbeans.org/tutorials/nbm-code-generator.html
来源:https://stackoverflow.com/questions/10636376/how-to-edit-getter-setter-templates-in-netbeans