Skip to content

Instantly share code, notes, and snippets.

@sandromancuso
Created March 6, 2012 20:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save sandromancuso/1988792 to your computer and use it in GitHub Desktop.
public class ProductBuilder {
private double price;
private String name;
public static ProductBuilder aProduct() {
return new ProductBuilder();
}
public ProductBuilder costing (double price) {
this.price = price;
return this;
}
public ProductBuilder named(String name) {
this.name = name;
return this;
}
public Product build() {
Product product = new Product();
product.setPrice(price);
product.setName(name);
return product;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment