17 lines
359 B
Java
17 lines
359 B
Java
|
package polling_station_dashboard.statusLog;
|
||
|
|
||
|
import javafx.stage.Stage;
|
||
|
|
||
|
/**
|
||
|
* Created by Vladimir Eliezer Tokarev on 04/06/2016.
|
||
|
* This class represent status of other users progress in the voting process
|
||
|
*/
|
||
|
public class StatusLogController {
|
||
|
|
||
|
private Stage primaryStage;
|
||
|
|
||
|
public void SetStage(Stage stage){
|
||
|
primaryStage = stage;
|
||
|
}
|
||
|
}
|