Package clips.delegate.doctor.certificate.tag.certTags

Source Code of clips.delegate.doctor.certificate.tag.certTags.CertTagGrowthMetastas

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package clips.delegate.doctor.certificate.tag.certTags;

import cli_fmw.main.ClipsException;
import clips.delegate.doctor.DiseaseLocal;
import clips.delegate.doctor.certificate.CertificateLocal;
import clips.delegate.doctor.certificate.tag.TagToClass;
import clips.delegate.doctor.certificate.tag.interfaces.TypeMultiSelectable;
import cli_fmw.delegate.report.ReportParam;
import framework.utils.PairIntStr;
import java.util.List;

/**
*
* @author vip
*/
@TagToClass(tagName="growth_metastas", title="Локализация отдаленных метастазов")
public class CertTagGrowthMetastas extends TypeMultiSelectable {

    public CertTagGrowthMetastas() throws ClipsException {
    }

    public CertTagGrowthMetastas(CertificateLocal certificateLocal, ReportParam reportParam, DiseaseLocal diseaseLocal) throws ClipsException {
        super(certificateLocal, reportParam, diseaseLocal);
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(1, "отдаленные лимфатич. узлы"));
        allItems.add(new PairIntStr(2, "кости"));
        allItems.add(new PairIntStr(3, "печень"));
        allItems.add(new PairIntStr(4, "легкие и/или плевра"));
        allItems.add(new PairIntStr(5, "головной мозг"));
        allItems.add(new PairIntStr(6, "кожа"));
        allItems.add(new PairIntStr(7, "почки"));
        allItems.add(new PairIntStr(8, "яичники"));
        allItems.add(new PairIntStr(9, "брюшина"));
        allItems.add(new PairIntStr(10, "костный мозг"));
        allItems.add(new PairIntStr(11, "другие органы"));
        allItems.add(new PairIntStr(12, "множественные"));
        allItems.add(new PairIntStr(13, "неизвестна"));
    }

    @Override
    public boolean isEditable() {
        return false;
    }

    @Override
    public List<Integer> getValue() throws ClipsException {
        return getItems();
    }

}
TOP

Related Classes of clips.delegate.doctor.certificate.tag.certTags.CertTagGrowthMetastas

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.