Skip to content

Instantly share code, notes, and snippets.

@hackjutsu
Created May 20, 2019 05:06
Show Gist options
  • Select an option

  • Save hackjutsu/016d8b57591b3d4b5c148189b9f1e59b to your computer and use it in GitHub Desktop.

Select an option

Save hackjutsu/016d8b57591b3d4b5c148189b9f1e59b to your computer and use it in GitHub Desktop.
[medium snippets] #medium #designPattern #CommandPattern
public class ReceiverB {
public void doAction() {
System.out.println("ReceiverB do action!!");
}
public void undoAction() {
System.out.println("ReceiverB undo action!!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment