Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
idatt1002_2023_9
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Andreas Kluge Svendsrud
idatt1002_2023_9
Commits
d10c5ca8
Commit
d10c5ca8
authored
1 year ago
by
Harry Linrui XU
Browse files
Options
Downloads
Patches
Plain Diff
Deleted NewBudget.java
parent
6a914346
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!51
Added javadoc to all methods
Pipeline
#219215
passed
1 year ago
Stage: build
Stage: test
Stage: package
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/no/ntnu/idatt1002/demo/view/NewBudget.java
+0
-42
0 additions, 42 deletions
src/main/java/no/ntnu/idatt1002/demo/view/NewBudget.java
with
0 additions
and
42 deletions
src/main/java/no/ntnu/idatt1002/demo/view/NewBudget.java
deleted
100644 → 0
+
0
−
42
View file @
6a914346
package
no.ntnu.idatt1002.demo.view
;
import
javafx.geometry.Insets
;
import
javafx.geometry.Pos
;
import
javafx.scene.Scene
;
import
javafx.scene.control.Button
;
import
javafx.scene.control.Label
;
import
javafx.scene.control.TextArea
;
import
javafx.scene.image.Image
;
import
javafx.scene.image.ImageView
;
import
javafx.scene.layout.HBox
;
import
javafx.scene.layout.Pane
;
import
javafx.scene.layout.StackPane
;
import
javafx.scene.layout.VBox
;
import
javafx.scene.text.Font
;
import
javafx.scene.text.FontPosture
;
import
javafx.scene.text.FontWeight
;
import
javafx.stage.Stage
;
import
java.io.FileInputStream
;
import
java.io.IOException
;
public
class
NewBudget
{
private
static
StackPane
root
;
public
static
Pane
getRoot
()
throws
IOException
{
TextArea
income
=
new
TextArea
();
TextArea
income2
=
new
TextArea
();
income
.
setMaxSize
(
200
,
20
);
income2
.
setMaxSize
(
200
,
20
);
VBox
inputs
=
new
VBox
();
inputs
.
getChildren
().
addAll
(
income
,
income2
);
inputs
.
setAlignment
(
Pos
.
CENTER
);
inputs
.
setSpacing
(
100
);
return
root
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment