diagram v0
This commit is contained in:
parent
1182b1307a
commit
99c8809d6a
1 changed files with 54 additions and 0 deletions
54
diagramme_uml.md
Normal file
54
diagramme_uml.md
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
<!-- https://mermaid.live -->
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
classDiagram
|
||||||
|
class Tache {
|
||||||
|
$-counter_id
|
||||||
|
-nom
|
||||||
|
-duree_total
|
||||||
|
-etat
|
||||||
|
-dependances
|
||||||
|
+unique_id
|
||||||
|
+visite
|
||||||
|
|
||||||
|
+realise()
|
||||||
|
+depends_from()
|
||||||
|
+ajouteDependance()
|
||||||
|
+dureeParal()
|
||||||
|
+PP_postfixe()
|
||||||
|
+get_duree_totale()
|
||||||
|
+get_name()
|
||||||
|
}
|
||||||
|
|
||||||
|
class Projet {
|
||||||
|
#tache_fin
|
||||||
|
#tache_debut
|
||||||
|
#taches
|
||||||
|
-cleanMarks()*
|
||||||
|
#pick_two_random_tasks()
|
||||||
|
#contains()
|
||||||
|
#topologicalSort()
|
||||||
|
+consult_tasks()
|
||||||
|
}
|
||||||
|
class ProtoProjet {
|
||||||
|
-cleanMarks()
|
||||||
|
+ajoute()
|
||||||
|
}
|
||||||
|
class RunProjet {
|
||||||
|
+run()
|
||||||
|
}
|
||||||
|
|
||||||
|
class Gestionnaire {
|
||||||
|
-salaire_attendu
|
||||||
|
-salaire_recu
|
||||||
|
-reste_a_payer()
|
||||||
|
+payer()
|
||||||
|
+avis()*
|
||||||
|
}
|
||||||
|
class Consultant {
|
||||||
|
+avis()
|
||||||
|
}
|
||||||
|
class Expert {
|
||||||
|
+avis()
|
||||||
|
}
|
||||||
|
```
|
Reference in a new issue