Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dev-qu
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
Hugo Debuyser
dev-qu
Commits
7e0f4eb7
Commit
7e0f4eb7
authored
1 year ago
by
Hugo Debuyser
Browse files
Options
Downloads
Patches
Plain Diff
tp2 non fini
parent
87c98547
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/tpQU/Event.java
+45
-0
45 additions, 0 deletions
src/tpQU/Event.java
src/tpQU/WarriorCard.java
+1
-1
1 addition, 1 deletion
src/tpQU/WarriorCard.java
with
46 additions
and
1 deletion
src/tpQU/Event.java
0 → 100644
+
45
−
0
View file @
7e0f4eb7
package
tpQU
;
import
java.time.LocalDate
;
import
tpOO.tp03.ToDoList
;
/**
* @author Hugo Debuyser
*/
public
class
Event
{
//Attributes
private
String
label
;
private
String
place
;
private
LocalDate
start
;
private
LocalDate
end
;
private
ToDoList
tasks
;
//Constructor
Event
(
String
label
,
String
place
,
LocalDate
start
,
LocalDate
end
,
ToDoList
tasks
){
this
.
label
=
label
;
this
.
place
=
place
;
this
.
start
=
start
;
this
.
end
=
end
;
this
.
tasks
=
tasks
;
}
Event
(
String
label
,
String
place
,
LocalDate
start
,
LocalDate
end
){
this
.
label
=
label
;
this
.
place
=
place
;
this
.
start
=
start
;
this
.
end
=
end
;
}
Event
(
String
label
,
String
place
,
LocalDate
start
){
this
.
label
=
label
;
this
.
place
=
place
;
this
.
start
=
start
;
}
Event
(
String
label
,
String
place
){
this
.
label
=
label
;
this
.
place
=
place
;
}
//methods
}
This diff is collapsed.
Click to expand it.
src/tpQU/WarriorCard.java
+
1
−
1
View file @
7e0f4eb7
package
tp
02
;
package
tp
QU
;
/**
*
...
...
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