1
Well I wanted to know why I can’t create a list of classes that implement another class, for example
public List<Class<? implements Classe>> classes;
this returns a syntax error...
But I can create one of classes that extend from another class...
public List<Class<? extends Classe>> classes;
returns no error...
You mean, implement an interface, right?
– mgibsonbr