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
0b4e6b81
Commit
0b4e6b81
authored
1 week ago
by
Kiljala Renne Lauri Olavi
Browse files
Options
Downloads
Patches
Plain Diff
done
parent
7c4ac980
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/fxHarakka/HarakkaController.java
+3
-1
3 additions, 1 deletion
src/fxHarakka/HarakkaController.java
src/fxHarakka/LuoProjektiController.java
+17
-3
17 additions, 3 deletions
src/fxHarakka/LuoProjektiController.java
src/fxHarakka/luokat/Naytto.java
+7
-0
7 additions, 0 deletions
src/fxHarakka/luokat/Naytto.java
with
27 additions
and
4 deletions
src/fxHarakka/HarakkaController.java
+
3
−
1
View file @
0b4e6b81
...
...
@@ -156,6 +156,7 @@ public class HarakkaController {
@FXML
void
HandleMuokkaa
(
ActionEvent
event
)
{
Dialogs
.
showMessageDialog
(
"Myöhemmin: Tästä saat muokattua"
);
...
...
@@ -168,7 +169,8 @@ public class HarakkaController {
/** Tapahtumankäsittelijä kun painetaan lisää Projekti painiketta päämenussa.
* avaa modaalisen ikkunan ja pyytää uuden projektin tiedot.
* avaa modaalisen ikkunan ja pyytää uuden projektin tiedot, jonka jälkeen hierarkiaa pitkin
* tietorakenteeseen.
*
* @param event klikataan päämenussa lisää projekti
*/
...
...
This diff is collapsed.
Click to expand it.
src/fxHarakka/LuoProjektiController.java
+
17
−
3
View file @
0b4e6b81
...
...
@@ -47,11 +47,17 @@ public class LuoProjektiController implements ModalControllerInterface<Projekti>
}
/**
* kun painetaan hylkää projekti
*
*
* @param event
*/
@FXML
void
HylkaaProjekti
(
ActionEvent
event
)
{
projektiNimi
=
null
;
projektiAihe
=
null
;
ModalController
.
closeStage
(
projektiNimi
);
}
/**
...
...
@@ -67,6 +73,14 @@ public class LuoProjektiController implements ModalControllerInterface<Projekti>
}
/**Jos tietokentät täytetty uusi projekti ikkunassa niin antaa modaalin kautta tiedon luodusta projektista
* eteenpäin
*
*
*
* @param event kun painetaan luo projekti projektin luomisikkunassa
*/
@FXML
void
luoProjekti
(
ActionEvent
event
)
{
String
pNimi
=
projektiNimi
.
getText
();
...
...
This diff is collapsed.
Click to expand it.
src/fxHarakka/luokat/Naytto.java
+
7
−
0
View file @
0b4e6b81
package
fxHarakka.luokat
;
import
fxHarakka.HarakkaController
;
public
class
Naytto
{
//Naytöllä on viite harakkaan --> naytossa pitää olla instanssi harakalle
public
Harakka
harakka
=
new
Harakka
();
//luodaan ns. uusi istunto --> voi olla useampi harakka
//jos jatkossa haluaa useamman käyttäjän
public
void
main
(){
}
}
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