Skip to content

Instantly share code, notes, and snippets.

@Dalamar42
Last active June 29, 2016 14:15
Show Gist options
  • Save Dalamar42/e782b0f1971dbca71e4fd2880f363806 to your computer and use it in GitHub Desktop.
Save Dalamar42/e782b0f1971dbca71e4fd2880f363806 to your computer and use it in GitHub Desktop.
public class Component {
private final Delegate delegate;
public Component() {
this.delegate = new 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