first commit

This commit is contained in:
2025-10-07 16:46:34 +02:00
commit 9484b7ad82
11 changed files with 596 additions and 0 deletions

28
travaux/Responsable.java Normal file
View File

@@ -0,0 +1,28 @@
package travaux;
import java.util.*;
public class Responsable extends Technicien {
public Responsable(String nom, int anneesExperience, ArrayList<Ouverture> listeOuvertures) {
super(nom, anneesExperience, listeOuvertures);
// TODO Auto-generated constructor stub
}
/**
* Association Type = Ouverture
*/
private ArrayList<Ouverture> listeSupervisions;
public void getFicheInfo() {
// TODO - implement Responsable.getFicheInfo
//throw new UnsupportedOperationException();
super.getFicheInfo();
}
}