Package clips.reportgen.mainpanel

Examples of clips.reportgen.mainpanel.ReportManagerImp


    public PanelReportGenerator(PageContainer container, QueryLocal query) throws ClipsException {
        super(container);
        initComponents();
        this.queryLocal = query;
        try {
            PanelGenerator panel = new PanelGenerator(MainWindow.mainWindow, query, new ReportManagerImp(getAuditManager()));
            reportQuery = panel.getQuery();
            add(panel);
            query.addContentStateListener(container);
        } catch (ReportException ex) {
            throw new ClipsException("Ошибка при открытии отчета", ex);
View Full Code Here

TOP

Related Classes of clips.reportgen.mainpanel.ReportManagerImp

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.