61 lines
1.1 KiB
Java
61 lines
1.1 KiB
Java
package ihm.controller;
|
|
|
|
import java.net.URL;
|
|
import java.util.ResourceBundle;
|
|
|
|
import javafx.fxml.FXML;
|
|
import javafx.fxml.Initializable;
|
|
import javafx.scene.control.Button;
|
|
import javafx.scene.control.Label;
|
|
import main.GestionnaireJeu;
|
|
|
|
public class ChoisirBoolean implements Initializable {
|
|
@FXML private Button ouiButton;
|
|
@FXML private Button nonButton;
|
|
@FXML private Label titre;
|
|
|
|
private boolean result;
|
|
@Override
|
|
public void initialize(URL arg0, ResourceBundle arg1) {
|
|
|
|
ouiButton.setOnAction(x -> {
|
|
|
|
this.result = true;
|
|
GestionnaireJeu.notifyPlateau();
|
|
});
|
|
|
|
nonButton.setOnAction(x -> {
|
|
this.result = false;
|
|
GestionnaireJeu.notifyPlateau();
|
|
});
|
|
}
|
|
|
|
public boolean getResult() {
|
|
return this.result;
|
|
}
|
|
|
|
public Button getOuiButton() {
|
|
return ouiButton;
|
|
}
|
|
|
|
public void setOuiButton(Button ouiButton) {
|
|
this.ouiButton = ouiButton;
|
|
}
|
|
|
|
public Button getNonButton() {
|
|
return nonButton;
|
|
}
|
|
|
|
public void setNonButton(Button nonButton) {
|
|
this.nonButton = nonButton;
|
|
}
|
|
|
|
public Label getTitre() {
|
|
return titre;
|
|
}
|
|
|
|
public void setTitre(Label titre) {
|
|
this.titre = titre;
|
|
}
|
|
}
|