Package cli_fmw.delegate.report

Examples of cli_fmw.delegate.report.ReportSearchLocal


    StateSaver.attachTo(this);
  }
 
  void initModels(){
    try {
      reportListModel = new DelegateListModel<ReportLocal>(new ReportSearchLocal(getAuditManager()).getReports());
      reportList.setModel(reportListModel);
      container = new DelegateListener<ReportLocal>();
      new ObjectComboBoxModel<ReportLocal>(mainFileCBox, container, new ReportFilesListModel(mainFileCBox, container, true)) {
        private static final long serialVersionUID = 1L;
        public void setSelectedItemImp(Object anItem) throws ClipsException {
View Full Code Here


       
        Dimension scrSize = Toolkit.getDefaultToolkit().getScreenSize();
        Rectangle dlgSize = this.getBounds();
        this.setLocation((scrSize.width - dlgSize.width) / 2, (scrSize.height - dlgSize.height) / 2);
       
        reportListModel = new DelegateListModel<ReportLocal>(new ReportSearchLocal(getAuditManager()).getReports());
        listReport.setModel(reportListModel);
    StateSaver.attachTo(this);
    }
View Full Code Here

          getObject().setType(getid(anId));
        }
       
      };
     
      ArrayList<ReportLocal>      reports = new ReportSearchLocal(getAuditManager()).getReports();
      for (Iterator<ReportLocal> it = reports.iterator(); it.hasNext();) {
        ReportLocal reportLocal = it.next();
        if (reportLocal.isSpecialReport()) {
          it.remove();
        }
View Full Code Here

        }
    }
   
    private void refreshTable() throws ClipsException {
        tabCertificateTypes.setModel(new TableModelCertificateTypeEdit(directory));
        JComboBox reportBox = new JComboBox(new ReportSearchLocal(getAuditManager()).getReports().toArray());
        tabCertificateTypes.getColumnModel().getColumn(TableModelCertificateTypeEdit.COL_REPORT).setCellEditor(new DefaultCellEditor(reportBox));
    }
View Full Code Here

TOP

Related Classes of cli_fmw.delegate.report.ReportSearchLocal

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.