Skip to content

Instantly share code, notes, and snippets.

@anjanashankar9
Created August 1, 2021 11:36
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/51845876f16828153f8d4fba05909865 to your computer and use it in GitHub Desktop.
Save anjanashankar9/51845876f16828153f8d4fba05909865 to your computer and use it in GitHub Desktop.
Command Pattern - TV
public class Television implements Device {
@Override
public void on() {
System.out.println("TV is on !!");
}
@Override
public void off() {
System.out.println("TV is off !!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment