Package reportgen.gui.genepanel.subreportpanel.dlg

Examples of reportgen.gui.genepanel.subreportpanel.dlg.UserChoiceDlg


                    throw new ReportException("Генерация отчета отменена");
                }
                res = report.continueReport(chunk);
            }
            QueryResults results = (QueryResults) res;
            UserChoiceDlg userChoiceDlg = new UserChoiceDlg(parent, results,
                    subreport.getActiveRows(),
                    subreport.getReport().getQuery().getColumns().getList());
            userChoiceDlg.setVisible(true);
            if(userChoiceDlg.isOK()) {
                ArrayList<Integer> selection = userChoiceDlg.getResult();
                if(selection.size() > 0 ) {
                    results.shrinkTo(selection);
                    subreport.setDefaultResults(results);
                } else {
                    subreport.clearDefaultResults();
View Full Code Here

TOP

Related Classes of reportgen.gui.genepanel.subreportpanel.dlg.UserChoiceDlg

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.