Examples of addContentStateListener()


Examples of clips.delegate.doctor.checkup.CheckupLocal.addContentStateListener()

    private void btProbeActionPerformed(java.awt.event.ActionEvent evt) {                                           
        if (jTable1.getSelectedRowCount() > 0) {
            CheckupLocal checkUp = checkupList.get(jTable1.getSelectedRowSorted());
            try {
                checkUp.addContentStateListener(emptyListener);
                checkUp.getSerrenLocal().addContentStateListener(emptyListener);
                DialogTakeSample dialog = new DialogTakeSample(MainWindow.mainWindow, checkUp, getAuditManager());
                dialog.setVisible(true);
                jTable1.updateUI();
            } catch (ClipsException ex) {
View Full Code Here

Examples of clips.delegate.doctor.checkup.CheckupLocal.addContentStateListener()

private void btAnalyseActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btAnalyseActionPerformed
        if (jTable1.getSelectedRowCount() > 0) {
            CheckupLocal checkUp = checkupList.get(jTable1.getSelectedRowSorted());
            try {
                checkUp.addContentStateListener(emptyListener);
                checkUp.getSerrenLocal().addContentStateListener(emptyListener);
                DialogRenderAnalyseIndividual dialog = new DialogRenderAnalyseIndividual(MainWindow.mainWindow, checkUp, getAuditManager());
                dialog.setVisible(true);
                jTable1.updateUI();
            } catch (ClipsException ex) {
View Full Code Here

Examples of clips.delegate.doctor.checkup.CheckupLocal.addContentStateListener()

private void jTable1MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jTable1MouseClicked
        if (evt.getClickCount() == 2) {
            if (jTable1.getSelectedRowCount() > 0) {
                CheckupLocal checkUp = checkupList.get(jTable1.getSelectedRowSorted());
                try {
                    checkUp.addContentStateListener(emptyListener);
                    checkUp.getSerrenLocal().addContentStateListener(emptyListener);
                    DialogTakeSample dialog = new DialogTakeSample(MainWindow.mainWindow, checkUp, getAuditManager());
                    dialog.setVisible(true);
                    jTable1.updateUI();
                } catch (ClipsException ex) {
View Full Code Here

Examples of clips.delegate.doctor.checkup.CheckupXMLData.addContentStateListener()

        xmlList.clear();
        for (int i = 0; i < checkupList.size(); i++) {
            CheckupLocal checkupLocal = checkupList.get(i);
            try {
                CheckupXMLData xml = checkupLocal.getCheckupXMLData();
                xml.addContentStateListener(getContainer());
                xml.addContentStateListener(this);
                xmlList.add(xml);
                prepareTable();
            } catch (ClipsException ex) {
                //эксепшен никогда не должен вылезти
View Full Code Here

Examples of clips.delegate.doctor.checkup.CheckupXMLData.addContentStateListener()

        for (int i = 0; i < checkupList.size(); i++) {
            CheckupLocal checkupLocal = checkupList.get(i);
            try {
                CheckupXMLData xml = checkupLocal.getCheckupXMLData();
                xml.addContentStateListener(getContainer());
                xml.addContentStateListener(this);
                xmlList.add(xml);
                prepareTable();
            } catch (ClipsException ex) {
                //эксепшен никогда не должен вылезти
                ex.printStackTrace();
View Full Code Here

Examples of clips.delegate.doctor.checkup.CheckupXMLData.addContentStateListener()

        xmlList.clear();
        for (int i = 0; i < checkupList.size(); i++) {
            CheckupLocal checkupLocal = checkupList.get(i);
            try {
                CheckupXMLData xml = checkupLocal.getCheckupXMLData();
                xml.addContentStateListener(getContainer());
                xml.addContentStateListener(this);
                xmlList.add(xml);
                prepareTable();
            } catch (ClipsException ex) {
                //эксепшен никогда не должен вылезти
View Full Code Here

Examples of clips.delegate.doctor.checkup.CheckupXMLData.addContentStateListener()

        for (int i = 0; i < checkupList.size(); i++) {
            CheckupLocal checkupLocal = checkupList.get(i);
            try {
                CheckupXMLData xml = checkupLocal.getCheckupXMLData();
                xml.addContentStateListener(getContainer());
                xml.addContentStateListener(this);
                xmlList.add(xml);
                prepareTable();
            } catch (ClipsException ex) {
                //эксепшен никогда не должен вылезти
                ex.printStackTrace();
View Full Code Here

Examples of clips.delegate.doctor.checkup.shedule.CheckupSheduleLocal.addContentStateListener()

                Date sheduleDate = ((TableModelAnalyseShedule) jTable1.getModel()).getDateAt(col);
                shedule = new CheckupSheduleLocal(checkupType, sheduleDate, getAuditManager());
                //trySincShedule(shedule);
            }
            //Создание и вызов диалога
            shedule.addContentStateListener(getContainer());
            CollectionUtils.addObectIfNotExist(checkupSheduleLocalList, shedule);
            DialogSheduleEditM1 dialog
                    = new DialogSheduleEditM1(MainWindow.mainWindow,
                                              freeCheckupMap.get(shedule.getType()),
                                              shedule, getAuditManager());
View Full Code Here

Examples of clips.delegate.doctor.diagnosis.DiagnosisLocal.addContentStateListener()

     */
    private void btAddActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btAddActionPerformed
        try {
            List<DiagnosisLocal> accompDiagnosis = diagnosisLocal.getAccompDiagnosis();
            DiagnosisLocal newDiagnosis = new DiagnosisLocal(diagnosisLocal.getSerrenLocal());
            newDiagnosis.addContentStateListener(getContainer());
            DirectoryDialogMKB10 dlg = new DirectoryDialogMKB10(false, newDiagnosis.getMkb());
            dlg.setVisible(true);
            if (dlg.getDlgResult() == ModalDialog.DLG_OK) {
                Selector selectedItems = dlg.getSelectedItems();
                if (selectedItems.size() > 0) {
View Full Code Here

Examples of clips.delegate.doctor.direction.DirectionLocal.addContentStateListener()

                    dlg.setVisible(true);
                    if (dlg.getDlgResult() == ModalDialog.DLG_OK) {
                        comResData.setCollaborator(UserInfo.get().getCollaborator());
                        committee.getResolutionList(false).append(comResData);
                        DirectionLocal direction = dirData.getDirection(getAuditManager());
                        direction.addContentStateListener(emptyListener);
                        direction.setOrdered(true);
                        directions.add(direction);
                    }
                }
            }
View Full Code Here
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.