Package clips.delegate.kek

Examples of clips.delegate.kek.CommitteeLocal$InabilityList


    private void btFindActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btFindActionPerformed
        try {
            comList = factory.findComitteeList(dateFrom, dateTill, client);
            for (int i = 0; i < comList.size(); i++) {
                CommitteeLocal comLocal = comList.get(i);
                comLocal.addContentStateListener(getContainer());           
            }
            tabComitteeList.setModel(new TableModelCommitteeList(comList));

        } catch (ClipsException e) {
            MessageBox.showException(e);
View Full Code Here


        if (comList == null || tabComitteeList.getSelectedRowCount() == 0) {
            MessageBox.showWarning(MessageBox.W_LIST_ELEMENT_NOT_SELECT);
            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);
View Full Code Here

        }
    }//GEN-LAST:event_btOpenCommitteeActionPerformed

    private void btNewActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btNewActionPerformed
        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) {
View Full Code Here

    try {
        int row = tabComitteeList.getSelectedRowSorted();
        if (row < 0) {
            return;
        }
        CommitteeLocal committee = comList.get(row);
       
        committee.remove();
        comList.remove(committee);
       
        tabComitteeList.updateUI();
    } catch (ClipsException ex) {
        MessageBox.showException(ex);
View Full Code Here

    public ArrayList<CommitteeLocal> getCommittees() throws ClipsException {
        try {
            ArrayList<CommitteeDetails> cList = getBean().getClientCommittees();
            ArrayList<CommitteeLocal> target = new ArrayList<CommitteeLocal>(cList.size());
            for (CommitteeDetails cd : cList) {
                target.add(new CommitteeLocal(cd, getAuditListener()));
            }
            return target;
        } catch (Exception ex) {
            clearBean();
            throw new ClipsException("Не удалось получить список диагнозов", ex);
View Full Code Here

TOP

Related Classes of clips.delegate.kek.CommitteeLocal$InabilityList

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.