-
Notifications
You must be signed in to change notification settings - Fork 0
/
Population.java
52 lines (39 loc) · 1.12 KB
/
Population.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package model;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
public class Population {
private int nombreHabitants;
private IntegerProperty sain;
private IntegerProperty infecté;
private IntegerProperty mort;
public Population(int nombreHabitants){
this.nombreHabitants = nombreHabitants;
this.sain = new SimpleIntegerProperty(nombreHabitants);
this.infecté = new SimpleIntegerProperty(0);
this.mort = new SimpleIntegerProperty(0);
}
public int getNombreHabitants(){
return this.nombreHabitants;
}
public IntegerProperty getSain() {
return sain;
}
public void setSain(int sain) {
this.sain.setValue(sain);
}
public IntegerProperty getInfecté() {
return infecté;
}
public void setInfecté(int infecté) {
this.infecté.setValue(infecté);
}
public IntegerProperty getMort() {
return mort;
}
public void setMort(int mort) {
this.mort.setValue(mort);;
}
public String toString(){
return "" + this.sain + " Nombre infectés: " + this.infecté + " Nombre morts : " + this.mort;
}
}