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