summaryrefslogtreecommitdiff
path: root/dslog/Gui.java
blob: ba8814148d83ba7de3e5d8013549cba24093982b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package dslog;

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;

class Gui extends Application {
	@Override
	public void start(Stage stage) {
		stage.setTitle("DSLOG/DSEVENTS/PDPLOG File Viewer");

		Circle circ = new Circle(40, 40, 30);
		Group root = new Group(circ);
		Scene scene = new Scene(root, 400, 300);

		stage.setScene(scene);
		stage.show();
	}
}