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
591b6b0b
Commit
591b6b0b
authored
1 month ago
by
Kiljala Renne Lauri Olavi
Browse files
Options
Downloads
Patches
Plain Diff
lisätty projekti luokka
parent
2b8db3c8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/fxHarakka/Projetki.java
+46
-0
46 additions, 0 deletions
src/fxHarakka/Projetki.java
with
46 additions
and
0 deletions
src/fxHarakka/Projetki.java
0 → 100644
+
46
−
0
View file @
591b6b0b
package
fxHarakka
;
/**
* Tää on siis luokka joka sisältää "projekti" alustajia ja sen metodeita.
* Tehään tällein jotta asiat löytyy helposti oikeista paikoista
*
* eli kun käyttöliittymästä painetaan luo projekti nii hypätään tänne
* kutsumaan aliohjelmaa luo projekti
*
*
*/
public
class
Projetki
{
private
int
id
;
//projekti id --> ensimmäinen projekti 1
private
String
nimi
;
//projektin nimi
private
String
aihe
;
//en tiiä onko vielä käyttöä mut voidaan leimata projekti tietyks aiheeks
//samalla aiheella sama värikoodaus käyttöliittymässä
private
static
int
seuraavaNro
=
1
;
//default parametritön muodostaja
public
Projetki
()
{
this
.
id
=
0
;
this
.
nimi
=
""
;
this
.
aihe
=
""
;
}
//parametrillinen muodostaja
public
Projetki
(
int
id
,
String
nimi
,
String
aihe
){
this
.
id
=
id
;
this
.
nimi
=
nimi
;
this
.
aihe
=
aihe
;
}
public
void
luoProjekti
(
int
id
,
String
nimi
,
String
aihe
){
}
public
static
void
main
(
String
[]
args
){
}
}
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