innerbuilder icon indicating copy to clipboard operation
innerbuilder copied to clipboard

IntelliJ IDEA plugin which generates an inner builder class

Results 24 innerbuilder issues
Sort by recently updated
recently updated
newest added

Can you add an option to use default JVM contructor if the constructor is empty According to squid:S1186 is having a empty body method a coding anti-pattern. This is behavior...

Here's a plugin output for `record TestRecord(String a){}`: ```java record TestRecord(String a){ private TestRecord(Builder builder) { a = builder.a; } public static Builder builder(TestRecord copy) { Builder builder = new...

in Android Studio, when setting java code style with field name prefix, then generated code is wrong, here is an example of auto generated Builder: ``` java public static final...

It would be a nice feature to use a 'set' prefix instead of 'with'. Many builder patterns I've seen on Android use 'set'. Also, it would be nice to have...

Please add option to change method name from newBuilder() to specified value, due to there different code style conventions and it depends from place where you work... I change name...

Constructors should only call non-overridable methods Calling an overridable method from a constructor could result in failures or strange behaviors when instantiating a subclass which overrides the method. For example:...

Mathias Id like to congratulate you on your excellent innerbuilder; it has saved me many hours of work. I would like to make one request: add a facility to update...

This is a very useful intelij extension. If it got an option to create test databuilders (that after generated we could add some default values, it would be even more...

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)...

Hi! :smile: It would be very helpful for me if this plugin could support NonNull and Nullable annotations from android.support.annotation. Logic would be pretty simple: if a field is marked...