redme + get et setter choix

This commit is contained in:
trochas
2025-09-19 10:49:50 +02:00
parent 68889db4fc
commit 1c7267a438
7 changed files with 35 additions and 0 deletions

View File

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

View File

@@ -10,4 +10,12 @@ public class Choix extends Reponse{
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.