DavidBurkett / Builderberg

IntelliJ IDEA plugin to generate inner builders with constraint validation
MIT License
3 stars 6 forks source link

Add support for custom generated code #20

Closed dogsworth closed 6 years ago

dogsworth commented 6 years ago

Please add an options dialog for custom generated code including hash(), equals(), and toString().

DavidBurkett commented 6 years ago

What do you mean by "options dialog"? As of builderberg 1.1.0, you can annotate classes with @BuilderOptions(generateHashCode = false, generateEquals = false, generate toString=false) and then they won't be generated. If you want to then implement custom versions, implement them manually and annotate the methods with @CustomLogic.