All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.imsweb.algorithms.survival.SurvivalTimeOutputPatientDto Maven / Gradle / Ivy

Go to download

Java implementation of cancer-related algorithms (NHIA, NAPIIA, Survival Time, etc...)

There is a newer version: 5.0
Show newest version
/*
 * 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