is it possible somehow to accept only super types of the generic Type of a class?
what im looking for is something like:
class <T extends Object> MyClass {
public <TS super T> void myMethod(TS someObjectSuperToTheClass) { //do stuff }
}
i don't really need it anymore (and its probably not all that usefull to begin with) but I'm curious if this is at all possible and if not why.
cheers, P.V. Goddijn