first commit
This commit is contained in:
28
travaux/Responsable.java
Normal file
28
travaux/Responsable.java
Normal file
@@ -0,0 +1,28 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user