Skip to content

Instantly share code, notes, and snippets.

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

  • Save hackjutsu/70e94b1f59c5882364bd1d2959335e05 to your computer and use it in GitHub Desktop.

Select an option

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