public class Cellule { public E element; public Cellule suivante; public Cellule(E elm, Cellule next) { this.element = elm; this.suivante = next; } }