Package clips.delegate.doctor.checkup

Examples of clips.delegate.doctor.checkup.CheckupFactoryLocal


    public PanelAnalyseList(PageContainer container, ClientLocal clientLocal, boolean isAnalysis) throws ClipsException {
        super(container);
        initComponents();
        this.clientLocal = clientLocal;
        this.isAnalysis = isAnalysis;
        cfl = new CheckupFactoryLocal(getAuditManager());
        reloadTable();
    resizeColumn();
    StateSaver.attachTo(this);
    }
View Full Code Here


     */
    public PanelAnalyseShedule(PageContainer container) throws ClipsException {
        super(container);
        initComponents();
        csf = new CheckupSheduleFactory();
        cfl = new CheckupFactoryLocal(getAuditManager());
        refreshData();
    StateSaver.attachTo(this);
    }
View Full Code Here

     * @throws ClipsException
     */
    public PanelAnalysesFactoryList(PageContainer container) throws ClipsException {
        super(container);
        initComponents();
        cfl = new CheckupFactoryLocal(getAuditManager());
        //заполнение комбо
       
        DirectoryLaboratory dirLab = DirectoryLocator.getDirectory(DirectoryLaboratory.class);
    ROList<DirectoryLaboratoryItem> list = dirLab.getFilteredItems(UserInfo.get().getCollaborator().getLpu());
        jComboBox1.setModel(new DefaultComboBoxModel(dirLab.toArray()));
View Full Code Here

TOP

Related Classes of clips.delegate.doctor.checkup.CheckupFactoryLocal

Copyright © 2018 www.massapicom. 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.