analytically / innerbuilder

IntelliJ IDEA plugin which generates an inner builder class

Home Page:https://plugins.jetbrains.com/plugin/7354-innerbuilder/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add a option to use field name for setters.

lanxx019 opened this issue · comments

As a developer, I would like to avoid using generic name like val or value for setter parameter names. I would like to be able to pass in the parameter using actual field name. E.g.

public Builder withFieldName(String fieldName) {
    this.fieldName = fieldName;
    return this;
}

Also, the prepare-build.sh's download url is outdated.