Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
velleman4J
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel
velleman4J
Merge requests
!4
Revert "Merge branch 'fxDemo' into 'master'"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Revert "Merge branch 'fxDemo' into 'master'"
revert-a30e4f4d
into
master
Overview
0
Commits
1
Pipelines
1
Changes
4
Merged
Daniel
requested to merge
revert-a30e4f4d
into
master
7 years ago
Overview
0
Commits
1
Pipelines
1
Changes
4
Expand
This reverts commit
a30e4f4d
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
29a7aa4b
1 commit,
7 years ago
4 files
+
11
−
71
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/main/java/fxDemo/VellemanDemoApp.java deleted
100644 → 0
+
0
−
37
Options
package
fxDemo
;
import
javafx.application.Application
;
import
javafx.fxml.FXMLLoader
;
import
javafx.scene.Scene
;
import
javafx.scene.layout.BorderPane
;
import
javafx.scene.layout.StackPane
;
import
javafx.stage.Stage
;
import
java.io.IOException
;
/**
* @author daniel.thomas
* @since 11.06.2017
*/
public
class
VellemanDemoApp
extends
Application
{
public
static
void
main
(
String
[]
args
){
launch
(
args
);
}
public
BorderPane
mainPane
;
public
void
start
(
Stage
stage
)
throws
IOException
{
mainPane
=
new
BorderPane
();
FXMLLoader
loader
=
new
FXMLLoader
(
getClass
().
getResource
(
"/fxDemo/layout/VellemanDemoApp_layout.fxml"
));
StackPane
stackPane
=
(
StackPane
)
loader
.
load
();
stage
.
setScene
(
new
Scene
(
stackPane
));
stage
.
show
();
}
}
Loading