27 lines
503 B
Java
27 lines
503 B
Java
|
package Pack;
|
||
|
import java.util.*;
|
||
|
|
||
|
import Pack.Technicien;
|
||
|
|
||
|
public class Responsable extends Technicien {
|
||
|
|
||
|
|
||
|
private ArrayList<Ouverture> listeSupervisions;
|
||
|
|
||
|
|
||
|
public Responsable() {
|
||
|
listeSupervisions = new ArrayList<Ouverture>();
|
||
|
}
|
||
|
|
||
|
public Responsable(String n,int exp) {
|
||
|
listeSupervisions = new ArrayList<Ouverture>();
|
||
|
setNom(n);
|
||
|
setAnneesExperience(exp);
|
||
|
}
|
||
|
|
||
|
public void getFicheInfo() {
|
||
|
// TODO - implement Responsable.getFicheInfo
|
||
|
throw new UnsupportedOperationException();
|
||
|
}
|
||
|
|
||
|
}
|