Package clips.doctor.newEMC.nodes.collectors

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

/*
* 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.certificate.PanelCertificateList;
import clips.doctor.newEMC.init.EmcTreeNode;
import clips.doctor.newEMC.wrappers.collectors.CertificateCollector;

/**
*
* @author petr
*/
public class CertificateCollectorNode extends EmcTreeNode<CertificateCollector, PanelCertificateList>{

    public CertificateCollectorNode(EmcTreeNode parent, CertificateCollector delegate) {
        super(parent, delegate);
    }

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

    @Override
    protected String getStringValue(CertificateCollector delegate) {
        return "Исходящая документация";
    }


}
TOP

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

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.