blob: 0f79eb234519235ad90b339744239756546c1c04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import java.util.List;
/*
* Created on Aug 19, 2008
*/
public class GenericMethodImpl2 extends GenericMethodImpl<Type2> {
@Override
public <T extends Type2> List<T> getStuff() {
return super.getStuff();
}
}
|