2021-11-30 22:02:55 +00:00
|
|
|
public class ConditionBoolean implements ConditionTest {
|
|
|
|
Boolean bool;
|
|
|
|
|
2021-12-01 19:55:46 +00:00
|
|
|
public ConditionBoolean(Boolean bool) {
|
2021-11-30 22:02:55 +00:00
|
|
|
this.bool = bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Boolean evaluer() {
|
2021-12-02 13:23:06 +00:00
|
|
|
return this.bool;
|
2021-11-30 22:02:55 +00:00
|
|
|
}
|
|
|
|
}
|