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
Post a Comment