Merge remote-tracking branch 'origin/main'

This commit is contained in:
tuanvu
2025-09-19 10:53:46 +02:00
7 changed files with 35 additions and 0 deletions

View File

@@ -14,25 +14,52 @@ classDiagram
class Utilisateur { class Utilisateur {
-id : int -id : int
name : String name : String
getId()int
setId(id:int)void
getName()String
setName(name:String)void
} }
class Session{ class Session{
-id : int -id : int
theme : int
getId()int
setId(id:int)void
getTheme()String
setTheme(theme:String)void
} }
class Quizz{ class Quizz{
-id : int -id : int
getId()int
setId(id:int)void
} }
class Reponse{ class Reponse{
- id : int - id : int
reponses : ArrayList<String>
getId()int
setId(id:int)void
getReponse()ArrayList<String>
setReponse(reponse:ArrayList<String> )void
} }
class Choix{ class Choix{
- id : int - id : int
choix : List<String> choix : List<String>
getId()int
setId(id:int)void
getChoix()List<String>
setChoix(choix:List<String>)void
} }
class ReponseCourte{ class ReponseCourte{
- id : int - id : int
value : String value : String
getId()int
setId(id:int)void
getVlaue()String
setId(id:String)void
} }
class Question{ class Question{
- id : int - id : int
getId()int
setId(id:int)void
} }
``` ```

View File

@@ -14,4 +14,12 @@ public class Choix extends Reponse{
super(); super();
} }
public ArrayList<String> getChoix() {
return this.choix;
}
public void setChoix(ArrayList<String> choix) {
this.choix = choix;
}
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.