Package clips.delegate.doctor.medexam

Examples of clips.delegate.doctor.medexam.MedexamLocal



    @Override
    public Object getValueAt(int row, int col) {
        try {
            MedexamLocal medexam = medexamList.get(row);
            switch (col) {
                case COL_CLIENT:
                return medexam.getClientLocal().getFIO();
                case COL_TYPE: return medexam.getPacketTitle();
                case COL_DATE: return medexam.getDiseaseLocal().getCreated();
                case COL_RESULT: return medexam.getFinalResult();
                default: throw new IllegalArgumentException("Некорректный номер столбца : " + col);
            }
        } catch (ClipsException ex) {
            return new ErrorValue(ex);
        }
View Full Code Here


        protected MedexamLocal init() throws Exception {
            MedexamDetails details = sst.getBean().getMedexam();
            if (details == null) {
                return null;
            } else {
                return new MedexamLocal(sst, details, getAuditListener());
            }
        }
View Full Code Here

TOP

Related Classes of clips.delegate.doctor.medexam.MedexamLocal

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.