Well I wanted to know why I can not create a class list that implements 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;
does not return any errors ...