Package cli_fmw.main

Examples of cli_fmw.main.PageGeneric


    private void btContractViewActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btContractViewActionPerformed
        try {
            PanelContractInfo panel = new PanelContractInfo(getContainer(),
                    contractList.get(tableContractList.getSelectedRowSorted()).getContract());
            PageGeneric page = getContainer().addNewPage(panel, this);
            getContainer().activatePage(page);
        } catch (PageException e) {
            MessageBox.showException(e);
        } catch (ClipsException e) {
            MessageBox.showException(e);
View Full Code Here


            return;
        }
        try {
            CommitteeLocal comLocal = comList.get(tabComitteeList.getSelectedRowSorted());                       
            PanelEditCommittee panel = new PanelEditCommittee(getContainer(), comLocal);
            PageGeneric page = getContainer().addNewPage(panel, this);
            getContainer().activatePage(page);
        } catch (PageException ex) {
            MessageBox.showException(ex);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

        try {
            CommitteeLocal comLocal = new CommitteeLocal(getAuditManager());
            comLocal.addContentStateListener(getContainer());           
           
            PanelEditCommittee panel = new PanelEditCommittee(getContainer(),comLocal);
            PageGeneric page = getContainer().addNewPage(panel, null);
            getContainer().activatePage(page);
        } catch (PageException ex) {
            MessageBox.showException(ex);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

    }

    private void openInEditor(QueryLocal queryLocal) {
        try {
            PanelReportGenerator panel = new PanelReportGenerator(getContainer(), queryLocal);
            PageGeneric page = getContainer().addNewPage((PageGeneric) panel, this);
            getContainer().activatePage(page);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
        }
    }
View Full Code Here

    private void btAddActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btAddActionPerformed
        try {
            QueryLocal query = new QueryLocal(getAuditManager());
            query.setReportType(reportType);
            PanelReportGenerator panel = new PanelReportGenerator(getContainer(), query);
            PageGeneric page = getContainer().addNewPage((PageGeneric) panel, this);
            getContainer().activatePage(page);
        } catch (ReportException ex) {
            MessageBox.showException(ex);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

        }
        QueryLocal queryLocal = cache.get(row);
        try {
            DebugPanel panel = new DebugPanel(MainWindow.mainWindow,
                    getContainer(), queryLocal);
            PageGeneric page = getContainer().addNewPage((PageGeneric) panel, this);
            getContainer().activatePage(page);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
        }
    }//GEN-LAST:event_btDebugActionPerformed
View Full Code Here

        }
        try {
            int clientID = followupList.get(tabFollowUps.getSelectedRowSorted()).clientID;
            ClientLocal clientLocal = new ClientLocal(clientID, getAuditManager());
            PanelClientEdit panel = new PanelClientEdit(getContainer(), clientLocal);
            PageGeneric page = getContainer().addNewPage(panel, this);
            getContainer().activatePage(page);
        } catch (PageException ex) {
            MessageBox.showException(ex);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

        }
        try {
            int clientID = followupList.get(tabFollowUps.getSelectedRowSorted()).clientID;
            ClientLocal clientLocal = new ClientLocal(clientID, getAuditManager());
            PanelClientEdit panel = new PanelClientEdit(getContainer(), clientLocal);
            PageGeneric page = getContainer().addNewPage(panel, this);
            getContainer().activatePage(page);
        } catch (PageException ex) {
            MessageBox.showException(ex);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

                return;
            }
            PanelProfcheckupView panelProfcheckup = new PanelProfcheckupView(getContainer(),
                    pl.getItems().get(0).getPolisData().getContract(),
                    pl);
            PageGeneric page = getContainer().addNewPage(panelProfcheckup, null);
            getContainer().activatePage(page);
        } catch (PageException ex) {
            MessageBox.showException(ex);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

                return;
            }
            PanelProfcheckupView panelProfcheckup = new PanelProfcheckupView(getContainer(),
                    pl.getItems().get(0).getPolisData().getContract(),
                    pl);
            PageGeneric page = getContainer().addNewPage(panelProfcheckup, null);
            getContainer().activatePage(page);
        } catch (PageException ex) {
            MessageBox.showException(ex);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

TOP

Related Classes of cli_fmw.main.PageGeneric

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.