Blog from Below: Eclipse Plugin for creating Builders
I wrote a small Plugin for Eclipse that automatically can generates the builder-pattern code for a given class.About the builder Pattern
The builder pattern is a design pattern for creating object instances. It is especially useful when dealing with classes which have a larger number of constructor arguments. For each constructor argument, the builder has a setter-like method. Instead of directly creating an instance of the class, an instance of the builder is created, and all required properties are set on the builder. Finally, the intrinsic instance can be created by calling the builder's build-method.Read full article from Blog from Below: Eclipse Plugin for creating Builders
No comments:
Post a Comment