Init de mon dépôt
This commit is contained in:
27
Pack/Responsable.java
Normal file
27
Pack/Responsable.java
Normal file
@@ -0,0 +1,27 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user