implemented joining of times

This commit is contained in:
2025-09-01 23:31:46 +02:00
parent 50dbe9a4e5
commit 45c2f3978f
6 changed files with 111 additions and 15 deletions

View File

@@ -68,10 +68,20 @@ public class Time implements Mappable{
return description;
}
public Time description(String newVal) {
description = newVal;
return this;
}
public Long end(){
return end;
}
public Time end(Long newVal) {
end = newVal;
return this;
}
public long id(){
return id;
}
@@ -143,6 +153,11 @@ public class Time implements Mappable{
return subject;
}
public Time subject(String newValue) {
subject = newValue;
return this;
}
public Collection<Long> taskIds(){
return taskIds;
}