Skip to content

Instantly share code, notes, and snippets.

@up1
Created September 7, 2015 10:50
Show Gist options
  • Save up1/6c5c4db1fe68bd88539b to your computer and use it in GitHub Desktop.
Save up1/6c5c4db1fe68bd88539b to your computer and use it in GitHub Desktop.
Example Injection
class A {
a()
}
class B {
b()
}
class C {
A a;
B b;
setA( A a ) {
this.a = a;
}
setB( B b ) {
this.b = b;
}
main() {
a.a();
b.b();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment