blob: 5ae8a52b5284508234cd408323fb1767accdcbb3 (
plain)
1
2
3
4
5
6
7
8
9
|
public class Concrete extends GenericSuper<Integer>{
@Override
public void doSomethingElseWith(Integer t) {
System.out.println("In normal method");
super.doSomethingElseWith(t);
}
}
|