Skip to content

Instantly share code, notes, and snippets.

@Dalamar42
Created June 29, 2016 14:21
Show Gist options
  • Save Dalamar42/b7978b1a35ddecf3c163b0718c90083a to your computer and use it in GitHub Desktop.
Save Dalamar42/b7978b1a35ddecf3c163b0718c90083a to your computer and use it in GitHub Desktop.
public class Component {
private final Delegate delegate;
public Component(Delegate delegate) {
this.delegate = delegate;
}
public void doTheThing() {
doMyOwnThing();
delegate.doTheDelegateThing();
}
private void doMyOwnThing() {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment