Package clips.doctor.newEMC.nodes

Examples of clips.doctor.newEMC.nodes.DiseaseNode


    try {
        if (selectedServiceNode != null){
            DialogNewReferedSerRen dlg = new DialogNewReferedSerRen(MainWindow.mainWindow, selectedServiceNode.getDelegate(), getAuditManager());
            dlg.setVisible(true);
            if (dlg.getDlgResult() == ModalDialog.DLG_OK) {
                DiseaseNode diseaseNode = (DiseaseNode) selectedServiceNode.getParent();
                for (SerRenLocal serRenLocal : dlg.getNewSerrenList()) {
                    diseaseNode.getDelegate().addChild(serRenLocal);
                }
            }
        }else{
            MessageBox.showWarning(MessageBox.W_SERVICE_NOT_SELECT);
        }
View Full Code Here


     * @return
     */
    private <T extends DelegateNodeInterface, P extends PageGeneric> EmcTreeNode<T, P> createNode(T delegate){
        EmcTreeNode newNode = null;
        if (delegate instanceof DiseaseLocal){
            newNode = new DiseaseNode(current, (DiseaseLocal) delegate);
        else if (delegate instanceof FollowupLocal){
            newNode = new FollowupNode(current,(FollowupLocal) delegate);
        }else if (delegate instanceof SerRenLocal){
            newNode = new SerrenNode(current,(SerRenLocal) delegate);
        }else if (delegate instanceof DiagnosisLocal){
View Full Code Here

TOP

Related Classes of clips.doctor.newEMC.nodes.DiseaseNode

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.