Skip to content

Instantly share code, notes, and snippets.

@anjanashankar9
Created August 1, 2021 11:44
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 anjanashankar9/7b18b8bab0c9ea2617bae12d5125d892 to your computer and use it in GitHub Desktop.
Save anjanashankar9/7b18b8bab0c9ea2617bae12d5125d892 to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
Device device = new Television();
Remote remote = new Remote(device);
// Turn TV on
Command cmd = new TurnTVOn(device);
cmd.execute();
//Turn TV Off
cmd = new TurnTVOff(device);
cmd.execute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment