MCPcopy Create free account
hub / github.com/ashishps1/awesome-low-level-design / Light

Class Light

design-patterns/java/command/Light.java:1–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1public class Light {
2 public void on() {
3 System.out.println("Light turned ON");
4 }
5
6 public void off() {
7 System.out.println("Light turned OFF");
8 }
9}

Callers 1

command_pattern_demoFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected