Package org.pentaho.reporting.designer.core.editor.bundle

Examples of org.pentaho.reporting.designer.core.editor.bundle.BundledResourceEditor$ExportFileAction


    }

    final ReportDesignerContext context = getReportDesignerContext();
    final Component parent = context.getView().getParent();
    final Window window = LibSwingUtil.getWindowAncestor(parent);
    final BundledResourceEditor dialog;
    if (window instanceof JDialog)
    {
      dialog = new BundledResourceEditor((JDialog) window, getReportDesignerContext());
    }
    else if (window instanceof JFrame)
    {
      dialog = new BundledResourceEditor((JFrame) window, getReportDesignerContext());
    }
    else
    {
      dialog = new BundledResourceEditor(getReportDesignerContext());
    }


    if (dialog.editResources())
    {
      final MasterReport masterReportElement = activeContext.getContextRoot();
      masterReportElement.fireModelLayoutChanged
          (masterReportElement, ReportModelEvent.NODE_PROPERTIES_CHANGED, masterReportElement.getBundle());
    }
View Full Code Here


    }

    final ReportDesignerContext context = getReportDesignerContext();
    final Component parent = context.getParent();
    final Window window = SwingUtil.getWindowAncestor(parent);
    final BundledResourceEditor dialog;
    if (window instanceof JDialog)
    {
      dialog = new BundledResourceEditor((JDialog) window, getReportDesignerContext());
    }
    else if (window instanceof JFrame)
    {
      dialog = new BundledResourceEditor((JFrame) window, getReportDesignerContext());
    }
    else
    {
      dialog = new BundledResourceEditor(getReportDesignerContext());
    }


    if (dialog.editResources())
    {
      final MasterReport masterReportElement = activeContext.getMasterReportElement();
      masterReportElement.fireModelLayoutChanged
          (masterReportElement, ReportModelEvent.NODE_PROPERTIES_CHANGED, masterReportElement.getBundle());
    }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.editor.bundle.BundledResourceEditor$ExportFileAction

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.