Package reportgen.gui.genepanel

Examples of reportgen.gui.genepanel.PanelGenerator


    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 reportgen.gui.genepanel.PanelGenerator

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.