Advertisement
Carotte

UML

Oct 3rd, 2022
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. @startuml
  2. hide circle
  3.  
  4. class Tournoi{
  5. numero : int {key}
  6. nom : text
  7. adresse : text
  8. commencer : boolean
  9. }
  10.  
  11. class Tour{
  12. }
  13.  
  14. class Match{
  15. }
  16.  
  17. class Set{
  18. Score : text
  19. }
  20. class Utilisateur{
  21. numero : int {key}
  22. nom : text
  23. prenom : text
  24. adresse : text
  25. numero_de_telephone : text
  26. date_de_naissance :text
  27. sexe : text
  28. }
  29.  
  30. class Organisateur {
  31. }
  32.  
  33. class Arbitre {
  34. }
  35.  
  36. class Administrateur{
  37. }
  38.  
  39. class Joueur{
  40. Nom Club : Text
  41. }
  42.  
  43. Tournoi "*" -- "1" Organisateur : Créer
  44. Tournoi "1" *-- "*" Tour : Fait de
  45. Tour "1" *-- "*" Match : Composer de
  46. Match "1" *-- "*" Set : Composer de
  47. Joueur "2.4" -- "0.*" Match : Joue
  48. Joueur "1.2" -- "*" Tournoi : Gagne
  49. Organisateur "1" -- "*" Arbitre : Nommé
  50. Arbitre "*" -- "1.*" Tournoi : est associé
  51. Administrateur "1" -- "*" Organisateur : Nomme
  52. Utilisateur <|-- Joueur
  53. Utilisateur <|-- Organisateur
  54. Utilisateur <|-- Arbitre
  55. Utilisateur <|-- Administrateur
  56.  
  57. @enduml
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement