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

Ability to remove annotations from from original fields

franzvezuli opened this issue · comments

Was wondering if we can add a new feature (checkmark) -- to not copy over the annotations from the original fields that are defined

Example:

@NotNull
@Size(max = 250)
private String name;

Currently:

public Builder withName(@NotNull @Size(max = 250) String val) {
  name = val;
  return this;
}

Wanted feature:

public Builder withName(String val) {
  name = val;
  return this;
}

Thank you for this already great plugin!