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

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

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

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

import cli_fmw.delegate.report.ReportParam;
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.TypeSelectableEdit;
import framework.utils.PairIntStr;
import java.util.HashSet;

/**
*
* @author lacoste
*/
@TagToClass(tagName="poisoning_nature", title="Характер отравления")
public class CertTagChemicalPoisoningNature extends TypeSelectableEdit {
    public static final int INDIVIDUAL = 1;
    public static final int FAMILIAL = 2;
    public static final int GROUP = 3;
    public static final int MASS = 4;

    public CertTagChemicalPoisoningNature() throws ClipsException {
    }

    public CertTagChemicalPoisoningNature(CertificateLocal certificateLocal, ReportParam reportParam, DiseaseLocal diseaseLocal) throws ClipsException {
        super(certificateLocal, reportParam, diseaseLocal);
        if (certificateLocal.isNewlyCreated()) {
            setItem(0);
        }
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(0, ""));
        allItems.add(new PairIntStr(INDIVIDUAL, "индивидуальное"));
        allItems.add(new PairIntStr(FAMILIAL, "семейное"));
        allItems.add(new PairIntStr(GROUP, "групповое"));
        allItems.add(new PairIntStr(MASS, "массовое ( указать количество отравившихся)"));

        editableItems = new HashSet<Integer>();
        editableItems.add(MASS);
    }
}
TOP

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

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.