Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active January 20, 2021 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trikitrok/222265947f93435c7fef4ea07075e185 to your computer and use it in GitHub Desktop.
Save trikitrok/222265947f93435c7fef4ea07075e185 to your computer and use it in GitHub Desktop.
package coffee_shop.menu.beverages_builders;
import coffee_shop.Beverage;
public interface CoffeeBuilder {
Beverage make();
CoffeeBuilder withMilk();
CoffeeBuilder withCream();
CoffeeBuilder withCinnamon();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment