Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created May 13, 2019 13:39
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 BetterProgramming/6a6fe8450fc8dc0d7c1722037678a60e to your computer and use it in GitHub Desktop.
Save BetterProgramming/6a6fe8450fc8dc0d7c1722037678a60e to your computer and use it in GitHub Desktop.
public abstract class CondimentDecorator extends Beverage {
Beverage beverage;
public abstract String getDescription();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment