Skip to content

Instantly share code, notes, and snippets.

@Khrol
Created April 17, 2013 12:33
Show Gist options
  • Save Khrol/5403876 to your computer and use it in GitHub Desktop.
Save Khrol/5403876 to your computer and use it in GitHub Desktop.
public class GenericUsage {
public <T extends BaseClass & SomeInterface> void useClass(T input) {
input.baseClassMethod();
input.someInterfaceMethod();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment