Merge branch 'dev'
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -144,6 +154,11 @@ public class Time implements Mappable{
|
||||
return subject;
|
||||
}
|
||||
|
||||
public Time subject(String newValue) {
|
||||
subject = newValue;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Collection<Long> taskIds(){
|
||||
return taskIds;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user