Package clips.doctor.newEMC.nodes.leaves

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

/*
* 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.diagnosis.DiagnosisLocal;
import clips.delegate.doctor.direction.DirectionLocal;
import clips.delegate.service.SerRenLocal;
import clips.doctor.PanelServiceInfo;
import clips.doctor.direction.PanelDirection;
import clips.doctor.newEMC.init.EmcTreeNode;
import java.util.ArrayList;
import java.util.List;

/**
*
* @author petr
*/
public class DirectionNode extends EmcTreeNode<DirectionLocal, PanelDirection> {

    public DirectionNode(EmcTreeNode parent, DirectionLocal delegate) {
        super(parent, delegate);
    }

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

}
TOP

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

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.