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

com.imsweb.algorithms.multipleprimary.MPOutput 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.multipleprimary;

import java.util.ArrayList;
import java.util.List;

import com.imsweb.algorithms.multipleprimary.MPUtils.MPResult;

public class MPOutput {

    private MPResult _result;

    private String _reason;
    
    private List _appliedRules;

    public MPOutput() {
        _appliedRules = new ArrayList<>();
    }

    public MPResult getResult() {
        return _result;
    }

    public void setResult(MPResult result) {
        _result = result;
    }

    public String getReason() {
        return _reason;
    }

    public void setReason(String reason) {
        _reason = reason;
    }

    public List getAppliedRules() {
        return _appliedRules;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy