Package clips.doctor.newEMC.nodes.collectors

Source Code of clips.doctor.newEMC.nodes.collectors.SicklistCollectorNode

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

package clips.doctor.newEMC.nodes.collectors;

import cli_fmw.main.ClipsException;
import cli_fmw.main.PageContainer;
import clips.doctor.newEMC.init.EmcTreeNode;
import clips.doctor.newEMC.wrappers.collectors.SicklistCollector;
import clips.doctor.sicklist.clientSicklist.PanelSicklistList;

/**
*
* @author petr
*/
public class SicklistCollectorNode extends EmcTreeNode<SicklistCollector, PanelSicklistList>{

    public SicklistCollectorNode(EmcTreeNode parent, SicklistCollector delegate) {
        super(parent, delegate);
    }

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

    @Override
    protected String getStringValue(SicklistCollector delegate) {
        return "Больничные";
    }


}
TOP

Related Classes of clips.doctor.newEMC.nodes.collectors.SicklistCollectorNode

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.