/*COM GENERICS*/
List <Apple> box = ... ;
Apple apple = box.get(0);
/*SEM GENERICS*/
List box = ... ;
/*COM GENERICS*/
List <Apple> box = ... ;
Apple apple = box.get(0);
/*SEM GENERICS*/
List box = ... ;
Correto Daniel