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

com.imsweb.algorithms.nhia.NhiaResultsDto Maven / Gradle / Ivy

Go to download

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

There is a newer version: 4.11
Show newest version
/*
 * Copyright (C) 2013 Information Management Services, Inc.
 */
package com.imsweb.algorithms.nhia;

public class NhiaResultsDto {

    private String _nhia;

    public NhiaResultsDto() {
    }

    public NhiaResultsDto(String nhia) {
        this._nhia = nhia;
    }

    public String getNhia() {
        return _nhia;
    }

    public void setNhia(String nhia) {
        this._nhia = nhia;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy