Skip to content

Instantly share code, notes, and snippets.

View aercanozcan's full-sized avatar

Ercan Özcan aercanozcan

  • Amboss GmbH
  • Berlin, Germany, Earth, Solar System, Milkyway
View GitHub Profile
@aercanozcan
aercanozcan / Command.java
Last active July 15, 2016 13:27
Simple Event Dispatcher
public abstract class Command {
private Command chain;
private CommandListener commandListener;
public Command(Command chain) {
this.chain = chain;
}
public Command() {
}