Package clips.doctor.newEMC.nodes.leaves

Source Code of clips.doctor.newEMC.nodes.leaves.ContraindicationNode

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package clips.doctor.newEMC.nodes.leaves;

import cli_fmw.delegate.DelegateLine2;
import cli_fmw.main.ClipsException;
import cli_fmw.main.PageContainer;
import clips.doctor.newEMC.init.generic.DelegateNode;
import clips.delegate.doctor.contraindication.ContraindicationLocal;
import clips.doctor.contraindication.PanelContraindication;
import clips.doctor.newEMC.init.EmcTreeNode;
import java.util.List;

/**
*
* @author petr
*/
public class ContraindicationNode extends EmcTreeNode<ContraindicationLocal, PanelContraindication> {

    public ContraindicationNode(EmcTreeNode parent, ContraindicationLocal delegate) {
        super(parent, delegate);
    }

    @Override
    protected PanelContraindication initPanel(ContraindicationLocal delegate, PageContainer pageContainer) throws ClipsException {
        return new PanelContraindication(pageContainer, delegate);
    }


}
TOP

Related Classes of clips.doctor.newEMC.nodes.leaves.ContraindicationNode

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.