Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HaRakka
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
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
rlokilja
HaRakka
Commits
76f774db
Commit
76f774db
authored
1 week ago
by
Kiljala Renne Lauri Olavi
Browse files
Options
Downloads
Patches
Plain Diff
lisätty controller
parent
74c5d005
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/fxHarakka/OksaController.java
+15
-0
15 additions, 0 deletions
src/fxHarakka/OksaController.java
src/fxHarakka/luokat/Harakka.java
+2
-0
2 additions, 0 deletions
src/fxHarakka/luokat/Harakka.java
src/fxHarakka/luokat/Projekti.java
+17
-2
17 additions, 2 deletions
src/fxHarakka/luokat/Projekti.java
with
34 additions
and
2 deletions
src/fxHarakka/OksaController.java
0 → 100644
+
15
−
0
View file @
76f774db
package
fxHarakka
;
import
fi.jyu.mit.fxgui.Dialogs
;
import
fi.jyu.mit.fxgui.ModalController
;
import
javafx.event.ActionEvent
;
import
javafx.fxml.FXML
;
import
javafx.fxml.FXMLLoader
;
import
javafx.scene.Scene
;
import
javafx.scene.control.Button
;
import
javafx.scene.control.CheckBox
;
import
javafx.scene.control.MenuItem
;
import
javafx.scene.layout.Pane
;
public
class
OksaController
{
}
This diff is collapsed.
Click to expand it.
src/fxHarakka/luokat/Harakka.java
+
2
−
0
View file @
76f774db
...
...
@@ -14,6 +14,8 @@ public class Harakka {
projekti1
.
rekisteroiProjekti
();
projekti2
.
rekisteroiProjekti
();
projekti1
.
setKesto
(
5
);
projekti1
.
setSuoritettu
(
2
);
harakka
.
lisaaProjekti
(
projekti1
);
...
...
This diff is collapsed.
Click to expand it.
src/fxHarakka/luokat/Projekti.java
+
17
−
2
View file @
76f774db
...
...
@@ -97,11 +97,26 @@ public class Projekti {
public
String
getAihe
()
{
return
aihe
;
}
public
void
setAihe
(
String
aihe
){
this
.
aihe
=
aihe
;
}
public
void
setNimi
(
String
nimi
){
this
.
nimi
=
nimi
;
}
public
void
setKesto
(
int
kesto
){
this
.
kesto
=
kesto
;
}
public
void
setSuoritettu
(
int
suoritettu
){
this
.
suoritettu
=
suoritettu
;
}
@Override
public
String
toString
(){
String
strg
=
this
.
nimi
+
" | "
+
this
.
aihe
+
" | "
+
this
.
id
;
String
strg
=
this
.
nimi
+
" | "
+
this
.
aihe
+
" | "
+
this
.
id
+
" | "
+
this
.
kesto
+
" | "
+
this
.
suoritettu
;
return
strg
;
}
...
...
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