Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active January 20, 2021 15:50
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/0c4af1a07ad0fa3b65fddf4b1d71b1be to your computer and use it in GitHub Desktop.
Save trikitrok/0c4af1a07ad0fa3b65fddf4b1d71b1be to your computer and use it in GitHub Desktop.
package coffee_shop.menu.beverages_builders;
import coffee_shop.Beverage;
public interface HotChocolateBuilder {
Beverage make();
HotChocolateBuilder withCream();
HotChocolateBuilder withCinnamon();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment