Package reportgen.gui.execute

Examples of reportgen.gui.execute.ReportExecuteDialog


        ItemSelectorEditable<QueryExecuterSub> subreports = reportQuery.getSubReports();
        QueryExecuterSub subreport = subreports.get(subreportTable.getSelectedRow());
        try {
            Report report = queryManager.get(subreport.getReportId());
            Object res = report.execute();
            ReportExecuteDialog dlg = new ReportExecuteDialog(parent);
            while (res instanceof UserInputChunk) {
                UserInputChunk chunk = (UserInputChunk) res;
                dlg.addPanel(new UserInputPanel(chunk));
                dlg.setVisible(true);
                if (dlg.isOK()) {
                    throw new ReportException("Генерация отчета отменена");
                }
                res = report.continueReport(chunk);
            }
            QueryResults results = (QueryResults) res;
View Full Code Here

TOP

Related Classes of reportgen.gui.execute.ReportExecuteDialog

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.