All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.registration.controller.FXComponents Maven / Gradle / Ivy

There is a newer version: 1.2.0.2
Show newest version
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