Examples of PairIntStr


Examples of framework.utils.PairIntStr

        }
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(0, ""));
        allItems.add(new PairIntStr(CITIZEN, "городской"));
        allItems.add(new PairIntStr(COUNTRYMAN, "сельский"));
    }
View Full Code Here

Examples of framework.utils.PairIntStr

                .getFullDiagnosisList(diseaseLocal == null ? 0 : diseaseLocal.getID());
        //Добавление сопутствующих диагнозов
        for (int i = 0; i < fullDiagnosisList.size(); i++) {
            DiagnosisLocal dl = fullDiagnosisList.get(i);
            if (dl.hasReferencedDiagnosis()) {
                PairIntStr pair = new PairIntStr(dl.getID(), dl.getMkbAndStage());
                allItems.add(pair);
            }
        }
    }
View Full Code Here

Examples of framework.utils.PairIntStr

    }
}//GEN-LAST:event_btCopyContractActionPerformed

private void ContractTypeChanged(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ContractTypeChanged
    try {
        PairIntStr p = (PairIntStr) cbContractType.getSelectedItem();
        int type = p.num;
        if (contractLocal.isNewlyCreated()) {
            if (type != Contract.TYPE_OMI) {
                contractLocal.setLpu(UserInfo.get().getCollaborator().getLpu());
            } else {
View Full Code Here

Examples of framework.utils.PairIntStr

        }
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(0, ""));
        allItems.add(new PairIntStr(OUT_OF_HOSPITAL, "вне стационара (указать где)"));
        allItems.add(new PairIntStr(POLYCLINIC, "в ЛПУ, через какое время от момента поступления (в часах)"));

        editableItems = new HashSet<Integer>();
        editableItems.add(OUT_OF_HOSPITAL);
        editableItems.add(POLYCLINIC);
    }
View Full Code Here

Examples of framework.utils.PairIntStr

        }
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(0, ""));
        allItems.add(new PairIntStr(ANSWER_YES, "да"));
        allItems.add(new PairIntStr(ANSWER_NO, "нет"));
    }
View Full Code Here

Examples of framework.utils.PairIntStr

                    defaultid = jobLocal.getID();
                }
                String fullTitle = jobLocal.getEnterprise().getFullTitle(false);
                fullTitle = fullTitle.replaceAll("\n", "");
                String address = jobLocal.getEnterprise().getAddress().toStringShort();
                PairIntStr pair = new PairIntStr(jobLocal.getID(), fullTitle + ", " + address);
                allItems.add(pair);
            }
        }
    }
View Full Code Here

Examples of framework.utils.PairIntStr

    @Override
    public void fillItems() throws ClipsException {
        DirectorySex dirSex = DirectoryLocator.getDirectory(DirectorySex.class);
        for (int i = 0; i < dirSex.getItems().size(); i++) {
            DirectorySexItem directorySimpleItem = dirSex.getItems().get(i);
            allItems.add(new PairIntStr(directorySimpleItem.getID(), directorySimpleItem.getTitle()));
        }
    }
View Full Code Here

Examples of framework.utils.PairIntStr

        }
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(0, ""));
        allItems.add(new PairIntStr(1, "MX"));
        allItems.add(new PairIntStr(2, "M0"));
        allItems.add(new PairIntStr(3, "M1"));
    }
View Full Code Here

Examples of framework.utils.PairIntStr

        }
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(0, ""));
        allItems.add(new PairIntStr(LUNGS, "туберкулез легких"));
        allItems.add(new PairIntStr(NO_LUNGS, "туберкулез плевры, ВДП, трахеи и бронхов, ВГДЛУ"));
        allItems.add(new PairIntStr(OTHER, "внелегочный туберкулез"));
    }
View Full Code Here

Examples of framework.utils.PairIntStr

        }
    }

    @Override
    public void fillItems() throws ClipsException {
        allItems.add(new PairIntStr(0, ""));
        allItems.add(new PairIntStr(NO, "нет"));
        allItems.add(new PairIntStr(ALCO, "алкоголизм"));
        allItems.add(new PairIntStr(NARCO, "наркомания"));
    }
View Full Code Here
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.