Package cli_fmw.delegate

Examples of cli_fmw.delegate.AuditList


                newSerrenList.add(serRenLocal);
            }
            dispose();
//            AuditFrame dlg = AuditFrame.getDialog();
//            dlg.showMe(auditList);
            getAuditManager().needDSA(new AuditList(auditList));

        } catch (Exception ex) {
            MessageBox.showException(ex);
        }
View Full Code Here


            dlg.setVisible(true);
            if (dlg.getDlgResult() == ModalDialog.DLG_OK && dlg.getResult() != null) {
                DisSerDiagAuditChunk result = dlg.getResult();
//                AuditFrame auditDlg = AuditFrame.getDialog();
//                auditDlg.showMe(result.auditDetailsList);
                getAuditManager().needDSA(new AuditList(result.auditDetailsList));


                ClientNode root = (ClientNode) treeEMC.getModel().getRoot();
                DiseaseLocal newDisease = new DiseaseLocal(emcLocal, result.diseaseDetails, getAuditManager());
                EmcTreeNode findNode = root.findNode(newDisease);
View Full Code Here

  private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
        try {
            ClientSearchLocal csl = new ClientSearchLocal(getAuditManager());
            ModificationInfo mi = csl.unionPacients();
            getAuditManager().needDSA(new AuditList(mi.getAudit()));
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
        }
  }//GEN-LAST:event_jButton2ActionPerformed
View Full Code Here

            }
            setVisible(false);
            dispose();
//            AuditFrame dlg = AuditFrame.getDialog();
//            dlg.showMe(auditList);
            getAuditManager().needDSA(new AuditList(auditList));
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
        }
    }//GEN-LAST:event_btSetServiceActionPerformed
View Full Code Here

TOP

Related Classes of cli_fmw.delegate.AuditList

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.