Package clips.doctor.medexam

Examples of clips.doctor.medexam.PanelMedexamEdit


    @Override
    public PageGeneric initPanel(DiseaseLocal delegate, PageContainer pageContainer) throws ClipsException {
        ClientLocal client = delegate.getEmcLocal().getClient();
        if (delegate.isMedexam()){
            return new PanelMedexamEdit(pageContainer, client, delegate.getMedexamLocal());
        }
        if (delegate.isProfcheckup()){
            ProfcheckupSearchLocal search = new ProfcheckupSearchLocal(new AuditManager());
            List<ProfcheckupItemLocal> items = search.getItemsBy(delegate);
            return new PanelProfcheckupItemsList(pageContainer, items);
View Full Code Here

TOP

Related Classes of clips.doctor.medexam.PanelMedexamEdit

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.