I have a this structure:
List< List< tracciato >> dataTot;
with
public class tracciato {
String comando = "";
String nome;
int posizione;
String tipo;
ArrayList< String > dati = new ArrayList<>(); // an other list
public tracciato() {
}
}
note that also inside the class tracciato there is an other list.... they are 3 list nested...can I use dataTable? thanks for the suggestions.