Skip to content

Instantly share code, notes, and snippets.

@ellehallal
Last active June 12, 2019 13:22
Show Gist options
  • Save ellehallal/54915be808c0b3eff7b51fe184749ad5 to your computer and use it in GitHub Desktop.
Save ellehallal/54915be808c0b3eff7b51fe184749ad5 to your computer and use it in GitHub Desktop.
public abstract class Greeter {
public final void greeting() {
doHello();
doGoodbye();
}
public abstract void doHello();
public abstract void doGoodbye();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment