correction README < et > dans les list
This commit is contained in:
14
README.md
14
README.md
@@ -1,6 +1,8 @@
|
||||
# Template de projet pour le TP JPA UniR
|
||||
|
||||
```mermaid
|
||||
|
||||
|
||||
classDiagram
|
||||
Utilisateur "*" -- "*" Session
|
||||
Session "*" -- "1" Quizz
|
||||
@@ -35,19 +37,19 @@ classDiagram
|
||||
}
|
||||
class Reponse{
|
||||
- id : int
|
||||
reponses : ArrayList<String>
|
||||
reponses : List<String>
|
||||
getId()int
|
||||
setId(id:int)void
|
||||
getReponse()ArrayList<String>
|
||||
setReponse(reponse:ArrayList<String> )void
|
||||
getReponse()List<String>
|
||||
setReponse(reponse:List<String> )void
|
||||
}
|
||||
class Choix{
|
||||
- id : int
|
||||
choix : List<String>
|
||||
choix : List<String>
|
||||
getId()int
|
||||
setId(id:int)void
|
||||
getChoix()List<String>
|
||||
setChoix(choix:List<String>)void
|
||||
getChoix()List<String>
|
||||
setChoix(choix:List<String>)void
|
||||
}
|
||||
class ReponseCourte{
|
||||
- id : int
|
||||
|
||||
Reference in New Issue
Block a user