Skip to content

Commit

Permalink
Update Treatment.java (#461)
Browse files Browse the repository at this point in the history
Lombok
  • Loading branch information
smals-jy authored Aug 27, 2024
1 parent b4450c5 commit 3812f48
Showing 1 changed file with 3 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,13 @@
import org.imec.ivlab.core.model.internal.parser.ItemParsedItem;

import org.joda.time.LocalDate;
import lombok.Data;

@Data
public class Treatment extends ItemParsedItem {

private LocalDate beginmoment;
private LocalDate endmoment;

public LocalDate getBeginmoment() {
return beginmoment;
}

public void setBeginmoment(LocalDate beginmoment) {
this.beginmoment = beginmoment;
}

public LocalDate getEndmoment() {
return endmoment;
}
private boolean noKnownTreatment;

public void setEndmoment(LocalDate endmoment) {
this.endmoment = endmoment;
}

}

0 comments on commit 3812f48

Please sign in to comment.