Skip to content

Instantly share code, notes, and snippets.

@cescoffier
Created October 23, 2010 08:02
Show Gist options
  • Save cescoffier/641920 to your computer and use it in GitHub Desktop.
Save cescoffier/641920 to your computer and use it in GitHub Desktop.
iPOJO Inheritence
public class Parent {
@Requires
LogService log;
public void doSomething() {
log.log();
}
}
public class Child extends Parent {
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment