Why is it not a problem to access an internal Java class in two stages:
Clause.Litteral l = (Clause.Litteral)copieResolvante.listeLitteraux.get(0);
if(l.predicat.equals("write")){
Clause.Litteral.Symbole s = (Clause.Litteral.Symbole)l.get(0);
System.out.println("VOILA CE QU'IL Y AVAIT AU CHALET: " + s + "\n\n\n");
... and is it a problem when we try to do it in one time?
while((Clause.Litteral)copieResolvante.listeLitteraux.get(cptrLit).predicat.equals("write")){
This is the architecture of our program: