Files
first-depot/travaux/Responsable.java

28 lines
529 B
Java
Raw Permalink Normal View History

2025-10-07 16:46:34 +02:00
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();
}
}