-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjet.java
74 lines (46 loc) · 1.51 KB
/
Projet.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package My_Desktop_planner;
import java.util.ArrayList;
public class Projet {
/*-------------------------------------------------------*/
//attribus
private ArrayList<Tache> ListeTaches;
private String nom ;
private String Description ;
//etat d'avancement
//construtor ---------------------------------------------
public Projet(ArrayList<Tache> ListeTaches, String nom, String Description, int etatAvancement) {
this.ListeTaches = ListeTaches;
this.nom = nom;
this.Description = Description;
//this.etatAvancement = etatAvancement;
}
//getters and setters -----------------------------------------
public ArrayList<Tache> getListeTaches() {
return ListeTaches;
}
public void setListeTaches(ArrayList<Tache> ListeTaches) {
this.ListeTaches = ListeTaches;
}
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
public String getDescription() {
return Description;
}
public void setDescription(String Description) {
this.Description = Description;
}
/*-------------------------------------------------------*/
//methods
public void AjouterTache(Tache tache ) {
ListeTaches.add(tache);
}
public void SupprimerTache(Tache tache ) {
if (ListeTaches.contains(tache)) {
ListeTaches.remove(tache);
}
}
}