28 lines
529 B
Java
28 lines
529 B
Java
|
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();
|
||
|
}
|
||
|
|
||
|
}
|