Package systole.domain.clinicalInformation.standardValues

Examples of systole.domain.clinicalInformation.standardValues.StandardValue



    public void setHighValueToPS() {
        JDialogClinicalInfo jDialogClinicalInfo = (JDialogClinicalInfo) this.editForm;
        try {
            StandardValue st = this.facadeDB.getStandardValuesBroker().getStandardValueByParamType(StandardParams.PS);
            jDialogClinicalInfo.getjTxtPS().setText(st != null ? st.getHigh().toString() : StandardParams.PS.getHigh().toString());
        } catch (ExceptionDAO edao) {
            jDialogClinicalInfo.getjTxtPS().setText(StandardParams.PS.getHigh().toString());
            this.facadeDB.refreshSession();
        }
    }
View Full Code Here



    public void setNormalValueToPD() {
        JDialogClinicalInfo jDialogClinicalInfo = (JDialogClinicalInfo) this.editForm;
        try {
            StandardValue st = this.facadeDB.getStandardValuesBroker().getStandardValueByParamType(StandardParams.PD);
            jDialogClinicalInfo.getjTxtPD().setText(st != null ? st.getNormal().toString() : StandardParams.PD.getNormal().toString());
        } catch (ExceptionDAO e) {
            jDialogClinicalInfo.getjTxtPD().setText(StandardParams.PD.getNormal().toString());
            this.facadeDB.refreshSession();
        }
    }
View Full Code Here


    public void setMediumValueToPD() {
        JDialogClinicalInfo jDialogClinicalInfo = (JDialogClinicalInfo) this.editForm;
        try {
            StandardValue st = this.facadeDB.getStandardValuesBroker().getStandardValueByParamType(StandardParams.PD);
            jDialogClinicalInfo.getjTxtPD().setText(st != null ? st.getMedium().toString() : StandardParams.PD.getMedium().toString());
        } catch (ExceptionDAO edao) {
            jDialogClinicalInfo.getjTxtPD().setText(StandardParams.PD.getMedium().toString());
            this.facadeDB.refreshSession();
        }
    }
View Full Code Here


    public void setHighValueToPD() {
        JDialogClinicalInfo jDialogClinicalInfo = (JDialogClinicalInfo) this.editForm;
        try {
            StandardValue st = this.facadeDB.getStandardValuesBroker().getStandardValueByParamType(StandardParams.PD);
            jDialogClinicalInfo.getjTxtPD().setText(st != null ? st.getHigh().toString() : StandardParams.PD.getHigh().toString());
        } catch (ExceptionDAO edao) {
            jDialogClinicalInfo.getjTxtPD().setText(StandardParams.PD.getHigh().toString());
            this.facadeDB.refreshSession();
        }
    }
View Full Code Here

TOP

Related Classes of systole.domain.clinicalInformation.standardValues.StandardValue

Copyright © 2018 www.massapicom. 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.