Transférer les fichiers vers 'src/Test'
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user