Examples of FollowupNode


Examples of clips.doctor.newEMC.nodes.FollowupNode

    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){
            newNode = new DiagnosisNode(current, (DiagnosisLocal)delegate);
        }else if (delegate instanceof CheckupLocal){
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.