19 lines
510 B
Java
19 lines
510 B
Java
|
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.
|
||
|
* BallotSummaryController handle the behavior of welcome splash class
|
||
|
*/
|
||
|
public class BallotSummaryController extends TwoWayNode {
|
||
|
@FXML
|
||
|
private void GetToSelectByPicture(MouseEvent mousePressed){
|
||
|
this.currentStage.close();
|
||
|
this.currentStage.setScene(this.previous);
|
||
|
this.currentStage.show();
|
||
|
}
|
||
|
}
|