From 80fe8dcdef516c49a0c583f8416724dec66b8110 Mon Sep 17 00:00:00 2001 From: Yoan Date: Sun, 4 Jun 2023 18:32:07 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20propri=C3=A9t=C3=A9=20EstFavori=20et=20?= =?UTF-8?q?constructeurs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ba3a7b4..f16de37 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ class Bestiaire { + string Origine + string Description + string Caracteristique + + Besiaire(string nom, string origine,string description,\n string caracteristiques) + Bestiaire(string nom, string origine, string description,\n string caracteristiques, string image) } @@ -35,6 +36,7 @@ class Equipage { + int PremierEp + bool Statut + string Description + + Equipage(string nom, string nomRomanise, string region, int premierChap,\n int premierEp, bool statut, string description) + Equipage(string nom, string nomRomanise, string region, int premierChap,\n int premierEp, bool statut, string description, string image) } @@ -46,6 +48,7 @@ class FruitDuDemon { + string Description + string Forces + string Faiblesses + + FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp,\n string description, string forces, string faiblesses) + FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp,\n string description, string forces, string faiblesses, string image) + FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp, string description,\n string forces, string faiblesses, string image, List utilisateur) } @@ -57,6 +60,7 @@ class Ile { + int PremierEp + string Description + string Geographie + + Ile(string nom, string nomRomanise, string region, int premierChap, \n int premierEp, string description, string geographie) + Ile(string nom, string nomRomanise, string region, int premierChap, \n int premierEp, string description, string geographie, string image) } @@ -68,12 +72,14 @@ class Personnage { + string Origine + string Biographie + string Citation + + Personnage(string nom , double prime, string epithete, int age, dobule taille,\n string origine, string biographie,string citation) + Personnage(string nom , double prime, string epithete, int age, dobule taille,\n string origine, string biographie,string citation, string image) } class ObjetOhara { + string Nom + string? Image + + bool EstFavori ObjetOhara(string nom, string image) } @@ -300,8 +306,6 @@ Il regroupe aussi : Ce diagramme de classe représente la structure de notre application. # Diagramme de classe en mettant en avant la partie persistance - - ```plantuml @startuml @@ -419,7 +423,6 @@ Concernant la persistance de l'application, elle est gérée par la classe XML_S # Diagramme de classes sur nos parties ajoutées - ```plantuml @startuml @@ -474,8 +477,10 @@ class Manager { class ObjetOhara { + string Nom + string? Image + + bool EstFavori ObjetOhara(string nom, string image) } + @enduml ```