Transférer les fichiers vers 'src/Test'

This commit is contained in:
2022-12-01 11:58:21 +01:00
parent 1430f84f21
commit e22ee64513
5 changed files with 61 additions and 39 deletions

View File

@@ -440,16 +440,26 @@ public class Controller implements ActionListener, ListSelectionListener {
}
public void createProfView () {
if (this.pv == null) {
this.pv = new ProfView(this.e, this.g, this);
}
}
public void createAdminView () {
public void setAv (AdminView av) {
if (this.av == null) {
this.av = new AdminView(this.e, this.g, this);
this.av = av;
}
}
}
public void setPv (ProfView pv) {
if (this.pv == null) {
this.pv = pv;
}
}
public ArrayList<Etudiant> getEtudiants () {
return this.e;
}
public ArrayList<Groupe> getGroupes() {
return this.g;
}
}