analyseWriter/src/baseListesEtudiants/chargeListeEtudiants.java

17 lines
393 B
Java

package baseListesEtudiants;
import MEPTL.commandes;
public class chargeListeEtudiants {
public static void chargeDansleNodeCSVListeEtudiants(Integer index) {
if(commandes.listesEtudiants!=null) {
if(commandes.listesEtudiants.getNodes().size()>0) {
commandes.nodeCSV = commandes.listesEtudiants.getNodes().get(index);
commandes.fourniCSV=true;
}
}
}
}