Merge remote-tracking branch 'origin/main'
This commit is contained in:
27
README.md
27
README.md
@@ -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
|
||||
}
|
||||
```
|
||||
@@ -14,4 +14,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.
Binary file not shown.
Reference in New Issue
Block a user