Customizing of code generation in IntelliJ IDEA -


im using intellij idea 12. can customise code generated using "refactor" functional?

for example want change template of setting generation(encapsulate fields) from:

public void setfield(string field) {         this.field = field;     } 

to

public myclass setfield(string field) {         this.field = field;         return this;     } 

as far know, can't you're suggesting in intellij. there plugins, however, can generation of fluent interfaces.


Comments

Popular posts from this blog

how to proxy from https to http with lighttpd -

android - Automated my builds -

python - Flask migration error -