mkarneim / pojobuilder

A Java Code Generator for Pojo Builders
Other
334 stars 44 forks source link

Add withSetterVarargs parameter. #165

Open NaridaL opened 4 years ago

NaridaL commented 4 years ago

If the POJO has a setter setFoos(Foo[] foos), I'd like the option to generate setter methods in the builder with withFoos(Foo... foos).

This would allow for a more fluent creation of objects.