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
73bb966b
Commit
73bb966b
authored
6 days ago
by
Kiljala Renne Lauri Olavi
Browse files
Options
Downloads
Patches
Plain Diff
lisätty alku tiedostoon kirjoittamiselle
parent
083d34c6
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/luokat/Harakka.java
+5
-0
5 additions, 0 deletions
src/fxHarakka/luokat/Harakka.java
src/fxHarakka/luokat/Projektit.java
+15
-1
15 additions, 1 deletion
src/fxHarakka/luokat/Projektit.java
src/fxHarakka/rekisteri/projektit.dat
+1
-0
1 addition, 0 deletions
src/fxHarakka/rekisteri/projektit.dat
with
21 additions
and
1 deletion
src/fxHarakka/luokat/Harakka.java
+
5
−
0
View file @
73bb966b
...
...
@@ -2,11 +2,16 @@ package fxHarakka.luokat;
import
fxHarakka.HarakkaController
;
public
class
Harakka
{
//harakalla on tehtavat ja projektit instanssit
private
final
Tehtavat
tehtavat
=
new
Tehtavat
();
public
final
Projektit
projektit
=
new
Projektit
();
public
Harakka
()
{
}
public
static
void
main
(
String
[]
args
)
{
...
...
This diff is collapsed.
Click to expand it.
src/fxHarakka/luokat/Projektit.java
+
15
−
1
View file @
73bb966b
package
fxHarakka.luokat
;
import
java.io.File
;
import
java.util.ArrayList
;
import
java.util.Scanner
;
/**---------------Projektien (monikko) luokka--------------------------------
* | | -Projekti |
...
...
@@ -32,7 +34,7 @@ public class Projektit {
* @param kokoNimi projektikokoelman nimi
* @param tied tiedostosijainti josta luetaan ja talletetaan
*/
public
Projektit
(
String
kokoNimi
,
String
tied
)
{
public
Projektit
(
String
kokoNimi
,
String
tied
)
{
this
.
kokoNimi
=
kokoNimi
;
this
.
tied
=
tied
;
}
...
...
@@ -115,6 +117,18 @@ public class Projektit {
return
-
1
;
}
//================================Tiedoston luku ja kirjoitus================================================
String
polku
=
"projektit.dat"
;
String
dir
=
"rekisteri"
;
//ensin tehdään osa jossa jos rekisteri nimistä kansiota ei ole niin se luodaan
//ja jos sen sisällä ei ole projektit.dat nimistä tiedosta niin sekin luodaan
File
rekisteri
=
new
File
(
dir
);
...
...
This diff is collapsed.
Click to expand it.
src/fxHarakka/rekisteri/projektit.dat
+
1
−
0
View file @
73bb966b
id |Nimi |Aihe |Kesto (viikkoa)|Kulunut (viikkoa) |
\ No newline at end of file
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