meerkat-java/voting-booth-gui/src/main/welcome_splash/WelcomeSplashController.java

32 lines
611 B
Java
Raw Normal View History

package main.welcome_splash;
import javafx.scene.Parent;
import javafx.stage.Stage;
import main.TwoWayNode;
/**
* Created by Vladimir Eliezer Tokarev on 8/27/2016.
* WelcomeSplashController handle the behavior of welcome splash class
*/
public class WelcomeSplashController implements TwoWayNode {
private Parent Next;
private Parent Previous;
private Stage currentSrage;
@Override
public void SetNext(TwoWayNode nextObject) {
}
@Override
public void SetPrevious(TwoWayNode previousObject) {
}
@Override
public void SetStage(Stage primaryStage) {
}
}