meerkat-java/voting-booth-gui/src/main/ballot_summary/BallotSummaryController.java

26 lines
704 B
Java
Raw Normal View History

2016-08-27 09:48:50 -04:00
package main.ballot_summary;
import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent;
import main.TwoWayNode;
/**
* Created by Vladimir Eliezer Tokarev on 8/27/2016.
2016-08-27 09:56:53 -04:00
* BallotSummaryController handle the behavior of ballot summary screen
2016-08-27 09:48:50 -04:00
*/
public class BallotSummaryController extends TwoWayNode {
@FXML
private void GetToSelectByPicture(MouseEvent mousePressed){
this.currentStage.close();
this.currentStage.setScene(this.previous);
this.currentStage.show();
}
2016-08-27 09:56:53 -04:00
@FXML
private void GetToCastOrAudit(MouseEvent mousePressed){
this.currentStage.close();
this.currentStage.setScene(this.next);
this.currentStage.show();
}
2016-08-27 09:48:50 -04:00
}