io.mosip.registration.controller.FXComponents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registration-client Show documentation
Show all versions of registration-client Show documentation
Maven project of MOSIP Registration UI
package io.mosip.registration.controller;
import java.util.Timer;
import org.springframework.stereotype.Component;
import javafx.scene.Scene;
import javafx.stage.Stage;
@Component
public class FXComponents {
private Stage stage;
private Scene scene;
private Timer timer;
public Stage getStage() {
return stage;
}
public void setStage(Stage stage) {
this.stage = stage;
}
public Scene getScene() {
return scene;
}
public void setScene(Scene scene) {
this.scene = scene;
}
public Timer getTimer() {
return timer;
}
public void setTimer(Timer timer) {
this.timer = timer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy