001package headfirst.command.simpleremote;
002
003public class Light {
004
005 public Light() {
006 }
007
008 public void on() {
009 System.out.println("Light is on");
010 }
011
012 public void off() {
013 System.out.println("Light is off");
014 }
015}