| 12 | } |
| 13 | |
| 14 | public class CommandPattern { |
| 15 | public static void show(Command cmd) { |
| 16 | System.out.println(cmd.msg); |
| 17 | } |
| 18 | public static void main(String[] args) { |
| 19 | show(new Command("First Command")); |
| 20 | show(new Command("Second Command")); |
| 21 | } |
| 22 | } |
| 23 | /* Output: |
| 24 | First Command |
| 25 | Second Command |
nothing calls this directly
no outgoing calls
no test coverage detected