Skip to content

Instantly share code, notes, and snippets.

@hackjutsu
Last active May 20, 2019 05:24
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 hackjutsu/a482456a96dbd2e31ed766276b8cb40b to your computer and use it in GitHub Desktop.
Save hackjutsu/a482456a96dbd2e31ed766276b8cb40b to your computer and use it in GitHub Desktop.
[medium snippets] #medium #designPattern #CommandPattern
public class NoCommand implements Command {
@Override
public void execute() {
System.out.println("No Command!");
}
@Override
public void undo() {
System.out.println("No Command!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment