com.imsweb.algorithms.survival.SurvivalTimeOutputPatientDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algorithms Show documentation
Show all versions of algorithms Show documentation
Java implementation of cancer-related algorithms (NHIA, NAPIIA, Survival Time, etc...)
/*
* Copyright (C) 2013 Information Management Services, Inc.
*/
package com.imsweb.algorithms.survival;
import java.util.List;
public class SurvivalTimeOutputPatientDto {
private String _vitalStatusRecode;
private List _survivalTimeOutputPatientDtoList;
public String getVitalStatusRecode() {
return _vitalStatusRecode;
}
public void setVitalStatusRecode(String vitalStatusRecode) {
_vitalStatusRecode = vitalStatusRecode;
}
public List getSurvivalTimeOutputPatientDtoList() {
return _survivalTimeOutputPatientDtoList;
}
public void setSurvivalTimeOutputPatientDtoList(List survivalTimeOutputPatientDtoList) {
_survivalTimeOutputPatientDtoList = survivalTimeOutputPatientDtoList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy