Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit b1f7655

Browse files
committed
Renaming Controller to ViewController
1 parent aaee1f2 commit b1f7655

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/de/flqw/fx/screens/Screens.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class Screens extends StackPane {
1313
private Stage stage;
1414

1515
private HashMap<String, Node> screens = new HashMap<>();
16-
private HashMap<String, Controller> controllers = new HashMap<>();
16+
private HashMap<String, ViewController> controllers = new HashMap<>();
1717

1818
private String activeScreen;
1919

@@ -48,7 +48,7 @@ public void load(String id, String fxml) {
4848

4949
Node screenRoot = loader.load();
5050

51-
Controller controller = loader.getController();
51+
ViewController controller = loader.getController();
5252

5353
// Inject values.
5454
controller.setScenes(this);
@@ -68,7 +68,7 @@ public void load(String id, String fxml) {
6868
}
6969

7070
/**
71-
* For javadoc see {@link Controller#switchTo}.
71+
* For javadoc see {@link ViewController#switchTo}.
7272
*
7373
* @param screenId
7474
*/
@@ -116,8 +116,8 @@ private class ScreenTransitionHandler {
116116

117117
ScreenTransitionState state = ScreenTransitionState.OLD_WILL_DISAPPEAR;
118118

119-
Controller oldController;
120-
Controller newController;
119+
ViewController oldController;
120+
ViewController newController;
121121

122122
Node newScreenRoot;
123123
Node oldScreenRoot;

src/de/flqw/fx/screens/Controller.java src/de/flqw/fx/screens/ViewController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Abstract superclass for FXML Controllers to be used with the Screens framework. Contains all life-cycle methods that may be
88
* overridden.
99
*/
10-
public abstract class Controller {
10+
public abstract class ViewController {
1111

1212
/**
1313
* The primary stage of this screen.

test/de/flqw/fx/screens/Screen1Controller.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package de.flqw.fx.screens;
22

3-
import de.flqw.fx.screens.Controller;
3+
import de.flqw.fx.screens.ViewController;
44
import de.flqw.fx.screens.Screens.ScreenTransition;
55
import javafx.animation.TranslateTransition;
66
import javafx.event.ActionEvent;
@@ -10,7 +10,7 @@
1010
import javafx.scene.control.Button;
1111
import javafx.util.Duration;
1212

13-
public class Screen1Controller extends Controller {
13+
public class Screen1Controller extends ViewController {
1414

1515
private @FXML Button transitionButton;
1616
private @FXML Button exitButton;

test/de/flqw/fx/screens/Screen2Controller.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package de.flqw.fx.screens;
22

3-
import de.flqw.fx.screens.Controller;
3+
import de.flqw.fx.screens.ViewController;
44
import de.flqw.fx.screens.Screens.ScreenTransition;
55
import javafx.animation.TranslateTransition;
66
import javafx.fxml.FXML;
77
import javafx.scene.control.Button;
88
import javafx.util.Duration;
99

10-
public class Screen2Controller extends Controller {
10+
public class Screen2Controller extends ViewController {
1111

1212
private @FXML Button backButton;
1313

0 commit comments

Comments
 (0)