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